<?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: Oracle spfile and dbstart</title>
	<atom:link href="http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/</link>
	<description>because I don't believe in life before coffee...</description>
	<lastBuildDate>Wed, 23 Nov 2011 03:01:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: bob</title>
		<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/comment-page-1/#comment-4157</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Mon, 21 Aug 2006 05:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeaftercoffee.com/?p=77#comment-4157</guid>
		<description>Why do people constantly try to do something just a little bit better? IMHO, the article presents the best solution (period).

-Bob
8i/9i/10g OCM DBA</description>
		<content:encoded><![CDATA[<p>Why do people constantly try to do something just a little bit better? IMHO, the article presents the best solution (period).</p>
<p>-Bob<br />
8i/9i/10g OCM DBA</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/comment-page-1/#comment-3895</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 12 Aug 2006 21:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeaftercoffee.com/?p=77#comment-3895</guid>
		<description>Nasseem,

I&#039;m sure that works, but you&#039;re running the same risks as Marius.  The spfile and init file just aren&#039;t the same.  You also have the problem of having to reapply this change if an upgrade overwrites dbstart and dbshut.</description>
		<content:encoded><![CDATA[<p>Nasseem,</p>
<p>I&#8217;m sure that works, but you&#8217;re running the same risks as Marius.  The spfile and init file just aren&#8217;t the same.  You also have the problem of having to reapply this change if an upgrade overwrites dbstart and dbshut.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseem Wagner</title>
		<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/comment-page-1/#comment-3800</link>
		<dc:creator>Naseem Wagner</dc:creator>
		<pubDate>Thu, 10 Aug 2006 10:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeaftercoffee.com/?p=77#comment-3800</guid>
		<description>Another possibility is to correct the ${ORACLE_HOME}/bin/dbstart and ${ORACLE_HOME}/bin/dbstart file.

simply change the line
PFILE=${ORACLE_HOME}/dbs/init${ORACLE_SID}.ora

to
PFILE=${ORACLE_HOME}/dbs/spfile${ORACLE_SID}.ora</description>
		<content:encoded><![CDATA[<p>Another possibility is to correct the ${ORACLE_HOME}/bin/dbstart and ${ORACLE_HOME}/bin/dbstart file.</p>
<p>simply change the line<br />
PFILE=${ORACLE_HOME}/dbs/init${ORACLE_SID}.ora</p>
<p>to<br />
PFILE=${ORACLE_HOME}/dbs/spfile${ORACLE_SID}.ora</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/comment-page-1/#comment-2690</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Tue, 11 Jul 2006 12:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeaftercoffee.com/?p=77#comment-2690</guid>
		<description>Marius,

While that method may work I would &lt;em&gt;not&lt;/em&gt; recommend it.  The pfile and spfile are in different formats and beyond Oracle screwing up your spfile, if another DBA sees initSID.ora they will think it&#039;s a normal pfile and manually edit it.  That means certian death for your spfile.

If you&#039;re relaly lazy you could just create a blank one with the command:

&lt;code&gt;$ touch spfile&lt;/code&gt;

but I would not recommend linking it to your spfile.</description>
		<content:encoded><![CDATA[<p>Marius,</p>
<p>While that method may work I would <em>not</em> recommend it.  The pfile and spfile are in different formats and beyond Oracle screwing up your spfile, if another DBA sees initSID.ora they will think it&#8217;s a normal pfile and manually edit it.  That means certian death for your spfile.</p>
<p>If you&#8217;re relaly lazy you could just create a blank one with the command:</p>
<p><code>$ touch spfile</code></p>
<p>but I would not recommend linking it to your spfile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius</title>
		<link>http://www.lifeaftercoffee.com/2005/09/29/oracle-spfile-and-dbstart/comment-page-1/#comment-2687</link>
		<dc:creator>Marius</dc:creator>
		<pubDate>Tue, 11 Jul 2006 09:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeaftercoffee.com/?p=77#comment-2687</guid>
		<description>Easy guys - create a symbolic link as ORACLE to the spfile - and it works!

$ cd /u01/app/oracle/product/9.2.0/dbs
$ ln -s spfileSID.ora initSID.ora

As ROOT:
su - oracle -c /u01/app/oracle/product/9.2.0/bin/dbstart</description>
		<content:encoded><![CDATA[<p>Easy guys &#8211; create a symbolic link as ORACLE to the spfile &#8211; and it works!</p>
<p>$ cd /u01/app/oracle/product/9.2.0/dbs<br />
$ ln -s spfileSID.ora initSID.ora</p>
<p>As ROOT:<br />
su &#8211; oracle -c /u01/app/oracle/product/9.2.0/bin/dbstart</p>
]]></content:encoded>
	</item>
</channel>
</rss>

