<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to start and stop Oracle services using Batch file</title>
	<atom:link href="http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/</link>
	<description>Windows 7 2008 2003 Vista XP 2000 Ms Office Tutorials Fixes Tips</description>
	<lastBuildDate>Sat, 21 Nov 2009 08:13:24 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sam Koiki</title>
		<link>http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/comment-page-1/#comment-2856</link>
		<dc:creator>Sam Koiki</dc:creator>
		<pubDate>Wed, 04 Nov 2009 04:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/?p=1640#comment-2856</guid>
		<description>Hi Guys, I&#039;m a bit of a novice and not sure where to run this batch file, is it at the Command prompt?</description>
		<content:encoded><![CDATA[<p>Hi Guys, I&#8217;m a bit of a novice and not sure where to run this batch file, is it at the Command prompt?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wasim</title>
		<link>http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/comment-page-1/#comment-2722</link>
		<dc:creator>Wasim</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/?p=1640#comment-2722</guid>
		<description>Will this batch file work in Windows XP? I have some problems regarding the file. In my computer, it does not work!
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Will this batch file work in Windows XP? I have some problems regarding the file. In my computer, it does not work!<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charlie</title>
		<link>http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/comment-page-1/#comment-1783</link>
		<dc:creator>charlie</dc:creator>
		<pubDate>Thu, 14 May 2009 17:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/?p=1640#comment-1783</guid>
		<description>Beautiful!!!  I saw this and now I can stop/start other services also with this information.  Thanks mr.admin!</description>
		<content:encoded><![CDATA[<p>Beautiful!!!  I saw this and now I can stop/start other services also with this information.  Thanks mr.admin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.windowsreference.com/windows-vista/how-to-start-and-stop-oracle-services-using-batch-file/comment-page-1/#comment-1743</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 07 May 2009 13:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/?p=1640#comment-1743</guid>
		<description>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 &quot;OracleOraDb11g_home1TNSListener&quot;
NET START &quot;OracleServiceINNOVATEST&quot;
NET START &quot;Oracle INNOVATEST VSS Writer Service&quot;
NET START &quot;OracleDBConsoleInnovaTest&quot;
NET START &quot;OracleJobSchedulerINNOVATEST&quot;

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 &quot;Oracle INNOVATEST VSS Writer Service&quot;
NET STOP &quot;OracleDBConsoleInnovaTest&quot;
NET STOP &quot;OracleJobSchedulerINNOVATEST&quot;
NET STOP &quot;OracleOraDb11g_home1TNSListener&quot;
NET STOP &quot;OracleServiceINNOVATEST&quot;

echo Oracle Services Stopped

GOTO END

:END</description>
		<content:encoded><![CDATA[<p>Use the following batch file</p>
<p>REM This batch file is used to start/stop the oracle instance<br />
REM Simply invoke oracle.bat start/stop<br />
cls</p>
<p>@ECHO off</p>
<p>REM ******************************************************************<br />
REM ** Batch file used to stop/start oracle services<br />
REM ******************************************************************</p>
<p>if(%1)==(start) GOTO START<br />
if(%1)==(stop) GOTO STOP</p>
<p>echo Invalid use.  Usage is oracle.bat stop/start</p>
<p>GOTO END</p>
<p>:START<br />
REM ** START the oracle services</p>
<p>echo Starting Oracle Services</p>
<p>REM change the instance/listener names to match what is in your services list</p>
<p>NET START &#8220;OracleOraDb11g_home1TNSListener&#8221;<br />
NET START &#8220;OracleServiceINNOVATEST&#8221;<br />
NET START &#8220;Oracle INNOVATEST VSS Writer Service&#8221;<br />
NET START &#8220;OracleDBConsoleInnovaTest&#8221;<br />
NET START &#8220;OracleJobSchedulerINNOVATEST&#8221;</p>
<p>echo Oracle Services Started</p>
<p>GOTO END</p>
<p>:STOP</p>
<p>echo Stopping Oracle Services</p>
<p>REM change the instance/listener names to match what is in your services list</p>
<p>NET STOP &#8220;Oracle INNOVATEST VSS Writer Service&#8221;<br />
NET STOP &#8220;OracleDBConsoleInnovaTest&#8221;<br />
NET STOP &#8220;OracleJobSchedulerINNOVATEST&#8221;<br />
NET STOP &#8220;OracleOraDb11g_home1TNSListener&#8221;<br />
NET STOP &#8220;OracleServiceINNOVATEST&#8221;</p>
<p>echo Oracle Services Stopped</p>
<p>GOTO END</p>
<p>:END</p>
]]></content:encoded>
	</item>
</channel>
</rss>
