Starting and stopping the Oracle Service bat script

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.