Create a batch files to start and stop the oracle server database
create a batch file with name start.bat and write the following command when edit the file,net start "OracleServiceWSDEV" ---- this is dependent to the database sid
net start "OracleOraHome92TNSListener"
these 2 commands enough to start the database.
to stop the services create a file called stop.bat and write the following command in it,
net stop "OracleServiceWSDEV" ---- this is dependent to the database sid
net stop "OracleOraHome92TNSListener"

0 Comments:
Post a Comment
<< Home