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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net stop "Oracle ORCL VSS Writer Service" | |
net stop OracleDBConsoleorcl | |
net stop OracleMTSRecoveryService | |
net stop OracleOraDb11g_home1ClrAgent | |
net stop OracleOraDb11g_home1TNSListener | |
net stop OracleServiceORCL |
