It is well known that Oracle will take up a lot of memory when booting up, and you have to go to the computer service to find services every time you want to use it. A startup of one, more troublesome. Here are two bat scripts to directly double-click Start and stop Oracle Services "script content from the network"
First, change Oracle's service to manual start
Second, the production of Oracle start and stop bat script
Only the 3 commonly used services are started here, which is usually enough for 3.
Start Service script: Oracle_start.bat Create a new text file and add the following red content. Save the text file as:Oracle_start.bat@echo offnet start Oracleoradb10g_home1tnslistenernet start ORACLESERVICEORCLnet start ORACLEDBCONSOLEORCLPause
Stop Service script: Oracle_stop.bat Create a new text file and add the following red content. Save text file as: Oracle_stop.bat@echo offnet stop ORACLEDBCONSOLEORCLnet stop ORACLESERVICEORCLnet stop Oracleoradb10g_home1tnslistener
Pause
Third, attach MySQL start and stop bat script
MySQL startup script: Mysqlstart.bat
@Echo OFF
net start MySQL
MySQL Stop script: mysqlstop.bat
@Echo OFF
net stop MySQL
From for notes (Wiz)
Starting and stopping the Oracle Service bat script