<?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: EBS advanced topologies: Sharing APPL_TOP, ORACLE_HOMEs, err&#8230; heck, why don&#039;t we share it all?</title>
	<atom:link href="http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Arnoud Roth</title>
		<link>http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/#comment-4560</link>
		<dc:creator>Arnoud Roth</dc:creator>
		<pubDate>Mon, 07 May 2007 13:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1873#comment-4560</guid>
		<description><![CDATA[Let me guess, did you use Metalink note 362135.1?
Can you tell me more about what exactly went wrong?]]></description>
		<content:encoded><![CDATA[<p>Let me guess, did you use Metalink note 362135.1?<br />
Can you tell me more about what exactly went wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason smith</title>
		<link>http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/#comment-4559</link>
		<dc:creator>jason smith</dc:creator>
		<pubDate>Thu, 03 May 2007 23:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1873#comment-4559</guid>
		<description><![CDATA[Have you been successful in using rapid clone to convert Oracle E-Business Suite 11.5.10.2 environment, single instance, multi-tier, which needed to be converted to a two-node RAC? Could you elaborate on the detailed steps that you followed- I have been trying to do the same with little luck.
Thanks]]></description>
		<content:encoded><![CDATA[<p>Have you been successful in using rapid clone to convert Oracle E-Business Suite 11.5.10.2 environment, single instance, multi-tier, which needed to be converted to a two-node RAC? Could you elaborate on the detailed steps that you followed- I have been trying to do the same with little luck.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arnoud Roth</title>
		<link>http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/#comment-4558</link>
		<dc:creator>Arnoud Roth</dc:creator>
		<pubDate>Wed, 02 May 2007 15:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1873#comment-4558</guid>
		<description><![CDATA[Nigel,
I am almost sure this won&#039;t do (setting the TNS_NAMES the way you propose). As far as I know, racgwrap is only used by srvctl, which initiates a secure shell connection to wichever machine, even the local machine. Regardless, what if you would start instance PROD2 from node1? This will start the database instance from node2, but you didn&#039;t login to node2, you are on node1. Under the surface, a secure shell (ssh) is initiated that immediately runs the scripts to start the instance. This ssh connection will not source the environment, so ORACLE_SID will not be set. I am not even convinced of this when it comes down to starting instance PROD1 from node1. Srvctl will initiate ssh even for the local node, bypassing the sourcing of the environment file. Adding the environment file to your .profile or equivalent I believe will not do, because .profile is bypassed when you run a command using ssh. Additionally, what if you have multiple databases running on your nodes (PROD, TEST, etc)? How to determine the ORACLE_SID? You might have dedicated users per environment, but you cannot have multiple Clusterware (used by srvctl) installations per node.
About your &quot;bigger&quot; question: My opinion is that with an application like EBS, downtime should be minimized as much as possible. That implies minimizing the risks for (unplanned) downtime as well. Especially with upgrades or patches (as already stated in the post), when having shared everything, the risks of downtime due to damage being done to the code is significant. When you would dedicate the code to the node it is running on, there is the possibility to upgrade the code locally, test it out, and if necessary fall back to the not yet patched node.
There is one major issue here (as allways is the case when you are using EBS). Patching the EBS software (APPL_TOP, etc), most of the times changes are made to the database as well. So it is allways necessary to have a proper backup of the database (DUH?).]]></description>
		<content:encoded><![CDATA[<p>Nigel,<br />
I am almost sure this won&#8217;t do (setting the TNS_NAMES the way you propose). As far as I know, racgwrap is only used by srvctl, which initiates a secure shell connection to wichever machine, even the local machine. Regardless, what if you would start instance PROD2 from node1? This will start the database instance from node2, but you didn&#8217;t login to node2, you are on node1. Under the surface, a secure shell (ssh) is initiated that immediately runs the scripts to start the instance. This ssh connection will not source the environment, so ORACLE_SID will not be set. I am not even convinced of this when it comes down to starting instance PROD1 from node1. Srvctl will initiate ssh even for the local node, bypassing the sourcing of the environment file. Adding the environment file to your .profile or equivalent I believe will not do, because .profile is bypassed when you run a command using ssh. Additionally, what if you have multiple databases running on your nodes (PROD, TEST, etc)? How to determine the ORACLE_SID? You might have dedicated users per environment, but you cannot have multiple Clusterware (used by srvctl) installations per node.<br />
About your &#8220;bigger&#8221; question: My opinion is that with an application like EBS, downtime should be minimized as much as possible. That implies minimizing the risks for (unplanned) downtime as well. Especially with upgrades or patches (as already stated in the post), when having shared everything, the risks of downtime due to damage being done to the code is significant. When you would dedicate the code to the node it is running on, there is the possibility to upgrade the code locally, test it out, and if necessary fall back to the not yet patched node.<br />
There is one major issue here (as allways is the case when you are using EBS). Patching the EBS software (APPL_TOP, etc), most of the times changes are made to the database as well. So it is allways necessary to have a proper backup of the database (DUH?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nigel Thomas</title>
		<link>http://technology.amis.nl/2007/04/25/ebs-advanced-topologies-sharing-appl_top-oracle_homes-err-heck-why-dont-we-share-it-all/#comment-4557</link>
		<dc:creator>Nigel Thomas</dc:creator>
		<pubDate>Wed, 02 May 2007 09:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1873#comment-4557</guid>
		<description><![CDATA[Arnaud

Small point; you should be able to simplify your setting of TNS_ADMIN to a single line:

TNS_ADMIN=$ORACLE_HOME/network/admin/${ORACLE_SID}_`hostname`

I&#039;m assuming of course that you&#039;ve already set ORACLE_SID in a node-specific way. Bigger question: what happens when you upgrade (Oracle, Apps, CRS, etc) in this scenario? that&#039;s maybe as big an issue as human errors (don&#039;t most human errors happen during upgrades?)

Regards Nigel]]></description>
		<content:encoded><![CDATA[<p>Arnaud</p>
<p>Small point; you should be able to simplify your setting of TNS_ADMIN to a single line:</p>
<p>TNS_ADMIN=$ORACLE_HOME/network/admin/${ORACLE_SID}_`hostname`</p>
<p>I&#8217;m assuming of course that you&#8217;ve already set ORACLE_SID in a node-specific way. Bigger question: what happens when you upgrade (Oracle, Apps, CRS, etc) in this scenario? that&#8217;s maybe as big an issue as human errors (don&#8217;t most human errors happen during upgrades?)</p>
<p>Regards Nigel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
