一键启动和关闭oracle服务

时间:2022-10-14 23:48:43
在没有使用本地oracle数据库时,开着oracle服务很占电脑资源,差一点的机子就会很卡。因此为了解决这个问题,写了一个批处理文件,可以根据需要快捷开启和关闭oracle服务。
我使用的是oracle11,如果版本不同可以把Listener名字改下就好
@echo off   
@echo Oracle服务
:menu   
@echo 1 启动服务,2 关闭服务, 3 退出程序   
set /p s=:123 (start,stop,exit):  
if "%s%"=="1" goto:start   
if "%s%"=="2" goto:stop   
if "%s%"=="3" goto:exit
goto:menu  
:start   
net start OracleOraDb11g_home1TNSListener
net start OracleServiceORCL
net start OracleDBConsoleorcl
net start OracleVssWriterORCL
@echo oracle服务已全部启动
goto exit
:stop  
net stop OracleOraDb11g_home1TNSListener
net stop OracleServiceORCL
net stop OracleDBConsoleorcl
net stop OracleVssWriterORCL
@echo oracle服务已全部关闭  
goto exit
:exit
@echo 程序已完成  
pause exit