Use the following batch file
REM This batch file is used to start/stop the oracle instance
REM Simply invoke oracle.bat start/stop
cls
@ECHO off
REM **
REM ** Batch file used to stop/start oracle services
REM **
if(%1)==(start) GOTO START
if(%1)==(stop) GOTO STOP
echo Invalid use. Usage is oracle.bat stop/start
GOTO END
:START
REM ** START the oracle services
echo Starting Oracle Services
REM change the instance/listener names to match what is in your services list
NET START "OracleOraDb11g_home1TNSListener"
NET START "OracleServiceINNOVATEST"
NET START "Oracle INNOVATEST VSS Writer Service"
NET START "OracleDBConsoleInnovaTest"
NET START "OracleJobSchedulerINNOVATEST"
echo Oracle Services Started
GOTO END
:STOP
echo Stopping Oracle Services
REM change the instance/listener names to match what is in your services list
NET STOP "Oracle INNOVATEST VSS Writer Service"
NET STOP "OracleDBConsoleInnovaTest"
NET STOP "OracleJobSchedulerINNOVATEST"
NET STOP "OracleOraDb11g_home1TNSListener"
NET STOP "OracleServiceINNOVATEST"
echo Oracle Services Stopped
GOTO END
:END
maovandara
Copyright © 2026 eLLeNow.com All Rights Reserved.