We have moved to www.dataGenX.net, Keep Learning with us.

Thursday, May 09, 2013

Stopping and Starting Oracle 11g Database Services in Windows



There are lot of services consuming a lot of CPU when an Oracle DB is running on machine. If you are using Oracle for learning/testing purpose only then you do not want to keep it up all the time.

So, here I am sharing 2 batch files for Stopping & Starting the Oracle Services on Windows which can do your work in one click only...



Oracle Start Batch File

 

net start "Oracle ORCL VSS Writer Service"
net start OracleDBConsoleorcl
net start OracleMTSRecoveryService
net start OracleOraDb11g_home1ClrAgent
net start OracleOraDb11g_home1TNSListener
net start OracleServiceORCL
sqlplus



 

Oracle Stop Batch File

 

net stop "Oracle ORCL VSS Writer Service"
net stop OracleDBConsoleorcl
net stop OracleMTSRecoveryService
net stop OracleOraDb11g_home1ClrAgent
net stop OracleOraDb11g_home1TNSListener
net stop OracleServiceORCL
view raw Oracle-stop.bat hosted with ❤ by GitHub