记录下,这是工作中需要用到的,整理下:
Start Oracle 11g Service.bat,启动监听和服务脚本如下:
@echo off
echo Are you sure to start the service of Oracle 11g ?
pause
net start OracleOraDb11g_home2TNSListener
net start OracleServiceORCL
echo Starting the service of Oracle 11g is ok,please sure no falut there!
Pause
停止服务脚本如下,服务名替换成相应的名字即可:
@echo off
echo 确定停止病历服务 ?
pause
net stop OracleServiceZLEMR
echo 成功停止电子病历服务!
Pause
网友评论