Friday, February 1, 2008

OBIEE Usefull server scripts

When developing your repository you often have start and stop the BI-server between savings of the .rpd file. For these task I made a couple of .cmd scripts which I draged on the windows taskbar .

StopBi.cmd:


:: StopBI.Cmd
:: Stops the Oracle BI Server
:: Author: John Minkjan

:: http://knowledge.ciber.nl/weblog/ and http://obiee101.blogspot.com/
Net stop "Oracle BI Server"
exit


StartBi.cmd:


:: StartBI.Cmd
:: Starts the Oracle BI Server
:: Author: John Minkjan
:: http://knowledge.ciber.nl/weblog/ and http://obiee101.blogspot.com/

Net start "Oracle BI Server"
exit


and combined they give ResetBI.cmd:

:: StopBI.Cmd
:: Stops and Starts the Oracle BI Server
:: Author: John Minkjan
:: http://knowledge.ciber.nl/weblog/ and http://obiee101.blogspot.com/


Net stop "Oracle BI Server"
Net start "Oracle BI Server"
exit

Till Next Time

No comments: