<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ora-solutions.net - Martin Decker &#187; MetaLink</title>
	<atom:link href="http://www.ora-solutions.net/web/category/oracle-database/metalink/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ora-solutions.net/web</link>
	<description>Indepented Oracle consultant</description>
	<lastBuildDate>Wed, 25 Jan 2012 14:04:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Performance Degradation for Query on DBA_SEGMENTS.BYTES in 11gR2</title>
		<link>http://www.ora-solutions.net/web/2011/07/18/performance-degradation-for-query-on-dba_segments-bytes-in-11gr2/</link>
		<comments>http://www.ora-solutions.net/web/2011/07/18/performance-degradation-for-query-on-dba_segments-bytes-in-11gr2/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:21:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[11gR2]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Performance Tuning]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=1085</guid>
		<description><![CDATA[I have been troubleshooting a performance issue in a DWH environment, which is quite interesting. It was a query on DBA_SEGMENTS in 11gR2 with lots of partitions and it was taking almost 10 minutes versus only a few seconds in 10gR2. The problem could be stripped downt to this SQL query:]]></description>
			<content:encoded><![CDATA[<p>I have been troubleshooting a performance issue in a DWH environment, which is quite interesting. It was a query on DBA_SEGMENTS in 11gR2 with lots of partitions and it was taking almost 10 minutes versus only a few seconds in 10gR2. The problem could be stripped downt to this SQL query:</p>
<pre lang=SQL">select bytes from dba_segments</pre>
<p>The dba_segment view can be seen in DBA_VIEWS:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">...</span>
       decode<span style="color: #66cc66;">&#40;</span>bitand<span style="color: #66cc66;">&#40;</span>segment_flags<span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">131072</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">131072</span><span style="color: #66cc66;">,</span> blocks<span style="color: #66cc66;">,</span>
           <span style="color: #66cc66;">&#40;</span>decode<span style="color: #66cc66;">&#40;</span>bitand<span style="color: #66cc66;">&#40;</span>segment_flags<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">,</span>
            <span style="color: #66cc66;">&lt;</span>strong<span style="color: #66cc66;">&gt;</span>dbms_space_admin<span style="color: #66cc66;">.</span>segment_number_blocks<span style="color: #66cc66;">&lt;/</span>strong<span style="color: #66cc66;">&gt;</span><span style="color: #66cc66;">&#40;</span>tablespace_id<span style="color: #66cc66;">,</span> relative_fno<span style="color: #66cc66;">,</span>
            header_block<span style="color: #66cc66;">,</span> segment_type_id<span style="color: #66cc66;">,</span> buffer_pool_id<span style="color: #66cc66;">,</span> segment_flags<span style="color: #66cc66;">,</span>
            segment_objd<span style="color: #66cc66;">,</span> blocks<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> blocks<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">*</span>blocksize<span style="color: #66cc66;">,</span>
      <span style="color: #66cc66;">...</span>
<span style="color: #993333; font-weight: bold;">FROM</span> sys_dba_segs</pre></div></div>

<p>The response time was dominated by Waits for &#8220;db file sequential reads&#8221; taking almost all of the response time.</p>
<p><strong>11gR2:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch    12563     23.17     546.74     157447     580414          1      188421
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total    12565     23.17     546.74     157447     580414          1      188421</pre></div></div>

<p><strong>10gR2:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.06       0.06          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch     5104      1.77       2.54          0      96688          0       76542
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total     5106      1.83       2.61          0      96688          0       76542</pre></div></div>

<p>The 10046 Trace File contains more data regarding those waits:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">WAIT #4: nam='db file sequential read' ela= 134 file#=21 block#=2313482 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 120 file#=15 block#=2128019 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 128 file#=21 block#=2313490 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 372 file#=21 block#=2313498 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 108 file#=21 block#=2313506 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 130 file#=21 block#=2313514 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 132 file#=21 block#=2313522 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 121 file#=21 block#=2313530 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 158 file#=15 block#=2128003 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 146 file#=21 block#=2313538 blocks=1 obj#=-1 
WAIT #4: nam='db file sequential read' ela= 116 file#=21 block#=2313546 blocks=1 obj#=-1 
(Output modified for formatting)</pre></div></div>

<p>Strange thing that obj# is -1. I made some block dumps of those blocks and found out that all those blocks (file#/block#) have something in common: They were all segment header blocks. Another strange thing was that when the query was executed a second time, all those I/O requests were performed again &#8211; so no caching. </p>
<p>At that point, I opened a Support service request. After a couple of weeks, Support suggested running this for each tablespace of the user segments:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">exec  dbms_space_admin<span style="color: #66cc66;">.</span>TABLESPACE_FIX_SEGMENT_EXTBLKS<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'&lt;tablespace_name&gt;'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Finally this fixed the problem. Now, we are trying to find out why this was necessary for a database, that was freshly created with dbca 11.2.0.2 from the seeded template and filled with data pump import.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2011/07/18/performance-degradation-for-query-on-dba_segments-bytes-in-11gr2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Is 11.2.0.2 ready for production? Judge yourself &#8230;</title>
		<link>http://www.ora-solutions.net/web/2011/04/18/is-11-2-0-2-ready-for-production-judge-yourself/</link>
		<comments>http://www.ora-solutions.net/web/2011/04/18/is-11-2-0-2-ready-for-production-judge-yourself/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 09:34:12 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[11gR2]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Data Guard]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=1036</guid>
		<description><![CDATA[Murphy said: if problems arise, they all come at the same time. After several weeks of stability, this week brought hell of a lot of Oracle problems with 11.2.0.2 and RAC. To list the worst: Downtime because of ASM process limit reached. Normally, the formula to calculate depends on the number of concurrent datafile extensions. [...]]]></description>
			<content:encoded><![CDATA[<p>Murphy said: if problems arise, they all come at the same time. After several weeks of stability, this week brought hell of a lot of Oracle problems with 11.2.0.2 and RAC. To list the worst:</p>
<ul>
<li><strong>Downtime because of ASM process limit reached. </strong>Normally, the formula to calculate depends on the number of concurrent datafile extensions. In our case 100 ASM processes were not enough. Increased to 200 and found  Note 1287496.1 which describes the issue. Merge Patch for bug is available for 11.2.0.2 GI Bundle 1 but not yet for GI Bundle 2. Ups.</li>
<li><strong>CPU Starvation because of Adaptive Cursor Sharing:</strong> One server process was taking up 100% of cpu time for the last several hours. It turned out to be an OEM monitoring query having several thousands of child cursors.<br />
<blockquote>
<pre>PID 	USER 	PR NI VIRT 	RES SHR S %CPU %MEM TIME+ COMMAND
8667 	ora11 25 0 	8423m 33m 28m R 99.7 	0.1 358:27.78 ora_pz98_MDDB</pre>
</blockquote>
<p>I then checked different databases and found that almost all of our 11.2.0.2 databases have several hundreds or even thousands of child cursors.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> sql_id<span style="color: #66cc66;">,</span> is_shareable<span style="color: #66cc66;">,</span> min<span style="color: #66cc66;">&#40;</span>child_number<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> max<span style="color: #66cc66;">&#40;</span>child_number<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> count<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">*</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #993333; font-weight: bold;">FROM</span> gv$sql
<span style="color: #993333; font-weight: bold;">GROUP</span> <span style="color: #993333; font-weight: bold;">BY</span> sql_id<span style="color: #66cc66;">,</span> is_shareable <span style="color: #993333; font-weight: bold;">HAVING</span> count<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">*</span><span style="color: #66cc66;">&#41;</span> &amp;gt;<span style="color: #cc66cc;">100</span> <span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #cc66cc;">6</span> <span style="color: #993333; font-weight: bold;">DESC</span>
&nbsp;
SQL_ID        IS_SHAREABLE MIN<span style="color: #66cc66;">&#40;</span>CHILD_NUMBER<span style="color: #66cc66;">&#41;</span> MAX<span style="color: #66cc66;">&#40;</span>CHILD_NUMBER<span style="color: #66cc66;">&#41;</span>  COUNT<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">*</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #808080; font-style: italic;">------------- ------------ ----------------- ------------------ ---------</span>
c7kt3njhnmtkm Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">5097</span>               <span style="color: #cc66cc;">1397</span>
c7kt3njhnmtkm N            <span style="color: #cc66cc;">3</span>                 <span style="color: #cc66cc;">3544</span>               <span style="color: #cc66cc;">1836</span>
1vnhgmpc17vv0 Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">3022</span>               <span style="color: #cc66cc;">2697</span>
1vnhgmpc17vv0 N            <span style="color: #cc66cc;">6</span>                 <span style="color: #cc66cc;">2185</span>               <span style="color: #cc66cc;">444</span>
93qh89pxuxzuw Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">1949</span>               <span style="color: #cc66cc;">1522</span>
93qh89pxuxzuw N            <span style="color: #cc66cc;">2</span>                 <span style="color: #cc66cc;">1625</span>               <span style="color: #cc66cc;">428</span>
5fk0v8km2f811 Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">1281</span>               <span style="color: #cc66cc;">1763</span>
4f3ufvfcgfqsg Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">792</span>                <span style="color: #cc66cc;">794</span>
cjbwk0ww7j5rv Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">627</span>                <span style="color: #cc66cc;">1251</span>
dyqdzgxcv4d3t Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">626</span>                <span style="color: #cc66cc;">1252</span>
5fk0v8km2f811 N            <span style="color: #cc66cc;">3</span>                 <span style="color: #cc66cc;">543</span>                <span style="color: #cc66cc;">260</span>
f0jxh8d6b5af2 Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">494</span>                <span style="color: #cc66cc;">564</span>
f0jxh8d6b5af2 N            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">290</span>                <span style="color: #cc66cc;">130</span>
dbvkky621gqtr Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">266</span>                <span style="color: #cc66cc;">267</span>
32rqmpqpfv0gm Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">255</span>                <span style="color: #cc66cc;">257</span>
g9uwxs7pr8tjm Y            <span style="color: #cc66cc;">0</span>                 <span style="color: #cc66cc;">254</span>                <span style="color: #cc66cc;">257</span>
40k6jjt90n4fa Y            <span style="color: #cc66cc;">3</span>                 <span style="color: #cc66cc;">199</span>                <span style="color: #cc66cc;">129</span></pre></div></div>

<p>I suspect this to be Bug 10182051 Extended cursor sharing generates many shareable child cursors  and there is a workaround:</p>
<blockquote><p>alter system set &#8220;_optimizer_extended_cursor_sharing_rel&#8221;=none;</p></blockquote>
</li>
</ul>
<ul>
<li><strong>Limited database availability because of failing queries on gv$ tables:</strong><br />
<blockquote>
<pre>SQL&gt; select count(*) from gv$session
2 ;
select count(*) from  gv$session
*
ERROR at line 1:
ORA-12850: Could not allocate slaves on  all specified instances: 2 needed, 1
allocated
ORA-12801: error signaled  in parallel query server P001, instance 3599</pre>
</blockquote>
<p>Currently no other known workaround than bouncing all the RAC instances.</li>
<li><strong>DataGuard ASYNC Redo Transport not reliable:</strong> We have a RAC primary / single instance physical standby setup and use async redo transport. During times of heavy ETL on the primary, the standby databases stops at recovery of one archivelog with &#8220;(in transit)&#8221;. Primary is showing this error in alert log:

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">ARC7: Creating remote archive destination LOG_ARCHIVE_DEST_2: <span style="color: #ff0000;">'HAMDB'</span> <span style="color: #66cc66;">&#40;</span>thread <span style="color: #cc66cc;">2</span> sequence <span style="color: #cc66cc;">4044</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>MUCDB2<span style="color: #66cc66;">&#41;</span>
ARC7: Archive log rejected <span style="color: #66cc66;">&#40;</span>thread <span style="color: #cc66cc;">2</span> sequence <span style="color: #cc66cc;">4044</span><span style="color: #66cc66;">&#41;</span> at host <span style="color: #ff0000;">'HAMDB'</span>
FAL<span style="color: #66cc66;">&#91;</span>server<span style="color: #66cc66;">,</span> ARC7<span style="color: #66cc66;">&#93;</span>: FAL archive failed<span style="color: #66cc66;">,</span> see trace file<span style="color: #66cc66;">.</span>
ARCH: FAL archive failed<span style="color: #66cc66;">.</span> Archiver continuing
ORACLE Instance MUCDB2 <span style="color: #66cc66;">-</span> Archival Error<span style="color: #66cc66;">.</span> Archiver continuing<span style="color: #66cc66;">.</span></pre></div></div>

<p>On standby side, it says:<br />
Media Recovery Waiting for thread 2 sequence 4044 (in transit)</p>
<p>The standby database never recovers from this problem, except when standby database is bounced. The problem appears with and without broker configuration. Currently there is no known workaround.</p>
</li>
</ul>
<p>Maybe some of this issues will be addressed in upcoming PSU April, which will be released this week. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2011/04/18/is-11-2-0-2-ready-for-production-judge-yourself/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recyclebin Bug &#8211; ORA-600 [ktcdso-1] on Oracle 11.2.0.2.1</title>
		<link>http://www.ora-solutions.net/web/2011/03/04/recyclebin-bug-ora-600-ktcdso-1-on-oracle-11-2-0-2-1/</link>
		<comments>http://www.ora-solutions.net/web/2011/03/04/recyclebin-bug-ora-600-ktcdso-1-on-oracle-11-2-0-2-1/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 16:08:29 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[11gR2]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=1031</guid>
		<description><![CDATA[Just a short note: If you are using 11.2.0.2 and 11.2.0.2.1, chances are high that database stability is endangered because of massive ORA-600 [ktcdso-1], unless you have recyclebin deactived with init.ora recyclebin=off. Oracle is currently working on this issue with Bug 10427260: ORA-00600 [KTCDSO-1], [], [], [] WHEN PURGE RECYCLE BIN. Unfortunately, the instance has [...]]]></description>
			<content:encoded><![CDATA[<p>Just a short note:</p>
<p>If you are using 11.2.0.2 and 11.2.0.2.1, chances are high that database stability is endangered because of massive ORA-600 [ktcdso-1], unless you have recyclebin deactived with init.ora recyclebin=off.</p>
<p>Oracle is currently working on this issue with Bug 10427260: ORA-00600 [KTCDSO-1], [], [], [] WHEN PURGE RECYCLE BIN.</p>
<p>Unfortunately, the instance has to be bounced in order to deactivate recyclebin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2011/03/04/recyclebin-bug-ora-600-ktcdso-1-on-oracle-11-2-0-2-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ADR packages and Oracle Support</title>
		<link>http://www.ora-solutions.net/web/2010/11/12/adr-packages-and-oracle-support/</link>
		<comments>http://www.ora-solutions.net/web/2010/11/12/adr-packages-and-oracle-support/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 15:36:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=975</guid>
		<description><![CDATA[Today I decided to take advantage of adrci and incident package generation for upload to Oracle support. Guess what the first request from Oracle support was: Please upload the text version of the ASM alert.log. . Very funny.]]></description>
			<content:encoded><![CDATA[<p>Today I decided to take advantage of adrci and incident package generation for upload to Oracle support. Guess what the first request from Oracle support was:</p>
<blockquote><p>Please upload the text version of the ASM alert.log.</p></blockquote>
<p>.</p>
<p>Very funny. <img src='http://www.ora-solutions.net/web/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2010/11/12/adr-packages-and-oracle-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>suboptimal prorated density calculation with DESC index &#8211; cardinality feedback feature</title>
		<link>http://www.ora-solutions.net/web/2010/10/25/suboptimal-prorated-density-calculation-with-desc-index-cardinality-feedback-feature/</link>
		<comments>http://www.ora-solutions.net/web/2010/10/25/suboptimal-prorated-density-calculation-with-desc-index-cardinality-feedback-feature/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 19:53:38 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[11g]]></category>
		<category><![CDATA[11gR2]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=899</guid>
		<description><![CDATA[At a customer site, I came across a problem of the Oracle cost based optimizer with selectivity calculation with a composite index with one column sorted descending. The following testcase describes the issue. Currently Oracle development is working on the issue. During testing on 11.2.0.1, I realized that the new cardinality feedback issue takes care [...]]]></description>
			<content:encoded><![CDATA[<p>At a customer site, I came across a problem of the Oracle cost based optimizer with selectivity calculation with a composite index with one column sorted descending. The following testcase describes the issue. Currently Oracle development is working on the issue. During testing on 11.2.0.1, I realized that the new cardinality feedback issue takes care of the problem and subsequent executions are using the correct plan.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">-- drop table if exists</span>
<span style="color: #993333; font-weight: bold;">DROP</span> <span style="color: #993333; font-weight: bold;">TABLE</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY purge;
&nbsp;
<span style="color: #808080; font-style: italic;">-- create table</span>
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY <span style="color: #66cc66;">&#40;</span>
      a number <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
      B number <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
      C number <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
      D number <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
      E number <span style="color: #66cc66;">&#41;</span> NOLOGGING;
&nbsp;
<span style="color: #808080; font-style: italic;">-- fill table</span>
<span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #808080; font-style: italic;">/*+ APPEND */</span>  <span style="color: #993333; font-weight: bold;">INTO</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY
<span style="color: #993333; font-weight: bold;">SELECT</span>  rownum <span style="color: #993333; font-weight: bold;">AS</span> a<span style="color: #66cc66;">,</span>
        MOD<span style="color: #66cc66;">&#40;</span>rownum<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> B<span style="color: #66cc66;">,</span>
        MOD<span style="color: #66cc66;">&#40;</span>rownum<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">10000</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> C<span style="color: #66cc66;">,</span>
        <span style="color: #cc66cc;">1</span> <span style="color: #993333; font-weight: bold;">AS</span> D<span style="color: #66cc66;">,</span>
        <span style="color: #cc66cc;">234</span> <span style="color: #993333; font-weight: bold;">AS</span> E
        <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #66cc66;">&#40;</span>
               <span style="color: #993333; font-weight: bold;">SELECT</span> rownum r
               <span style="color: #993333; font-weight: bold;">FROM</span>
                       <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">SELECT</span> rownum r <span style="color: #993333; font-weight: bold;">FROM</span> dual connect <span style="color: #993333; font-weight: bold;">BY</span> rownum <span style="color: #66cc66;">&lt;=</span> <span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span> a<span style="color: #66cc66;">,</span>
                       <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">SELECT</span> rownum r <span style="color: #993333; font-weight: bold;">FROM</span> dual connect <span style="color: #993333; font-weight: bold;">BY</span> rownum <span style="color: #66cc66;">&lt;=</span> <span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span> b<span style="color: #66cc66;">,</span>
                       <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">SELECT</span> rownum r <span style="color: #993333; font-weight: bold;">FROM</span> dual connect <span style="color: #993333; font-weight: bold;">BY</span> rownum <span style="color: #66cc66;">&lt;=</span> <span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span> c
               <span style="color: #993333; font-weight: bold;">WHERE</span> rownum <span style="color: #66cc66;">&lt;=</span> <span style="color: #cc66cc;">1000000</span>
       <span style="color: #66cc66;">&#41;</span>;
&nbsp;
commit;
&nbsp;
<span style="color: #808080; font-style: italic;">-- create indexes</span>
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY_IDX1 <span style="color: #993333; font-weight: bold;">ON</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY<span style="color: #66cc66;">&#40;</span>C<span style="color: #66cc66;">,</span>B<span style="color: #66cc66;">&#41;</span> nologging;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY_IDX2 <span style="color: #993333; font-weight: bold;">ON</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY<span style="color: #66cc66;">&#40;</span>B <span style="color: #993333; font-weight: bold;">DESC</span><span style="color: #66cc66;">,</span>a<span style="color: #66cc66;">&#41;</span> nologging;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY_IDX3 <span style="color: #993333; font-weight: bold;">ON</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY<span style="color: #66cc66;">&#40;</span>C<span style="color: #66cc66;">,</span>B<span style="color: #66cc66;">,</span>D<span style="color: #66cc66;">&#41;</span> nologging;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY_IDX4 <span style="color: #993333; font-weight: bold;">ON</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY<span style="color: #66cc66;">&#40;</span>B<span style="color: #66cc66;">,</span>a<span style="color: #66cc66;">&#41;</span> nologging;
&nbsp;
<span style="color: #808080; font-style: italic;">-- gather statistics (including tab stats for virtual hidden column for &quot;B desc&quot; column.</span>
begin DBMS_STATS<span style="color: #66cc66;">.</span>GATHER_TABLE_STATS<span style="color: #66cc66;">&#40;</span>
      OWNNAME<span style="color: #66cc66;">=&gt;</span><span style="color: #ff0000;">'ADMDECKER'</span><span style="color: #66cc66;">,</span>
      TABNAME<span style="color: #66cc66;">=&gt;</span><span style="color: #ff0000;">'DUMMY'</span><span style="color: #66cc66;">,</span>
      METHOD_OPT<span style="color: #66cc66;">=&gt;</span><span style="color: #ff0000;">'FOR ALL COLUMNS SIZE 1'</span><span style="color: #66cc66;">,</span>
      cascade<span style="color: #66cc66;">=&gt;</span>true<span style="color: #66cc66;">,</span>
      ESTIMATE_PERCENT<span style="color: #66cc66;">=&gt;</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span>;
END;
<span style="color: #66cc66;">/</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> DBA_TAB_STATISTICS <span style="color: #993333; font-weight: bold;">WHERE</span> TABLE_NAME <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'DUMMY'</span>;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> DBA_TAB_COL_STATISTICS <span style="color: #993333; font-weight: bold;">WHERE</span> TABLE_NAME <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'DUMMY'</span>;
&nbsp;
<span style="color: #808080; font-style: italic;">-- note min/max/density values for system generated virtual hidden column</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> DBA_TAB_COLS <span style="color: #993333; font-weight: bold;">WHERE</span> TABLE_NAME <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'DUMMY'</span>;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> dba_ind_statistics  <span style="color: #993333; font-weight: bold;">WHERE</span> TABLE_NAME <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'DUMMY'</span>;</pre></div></div>

<p>I enable 10053 tracing and execute the query. Afterwards I display the execution plan.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">SQL&amp;gt; <span style="color: #993333; font-weight: bold;">ALTER</span> SESSION <span style="color: #993333; font-weight: bold;">SET</span> EVENTS<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'10053 trace name context forever, level 1'</span>;
&nbsp;
Session altered<span style="color: #66cc66;">.</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #808080; font-style: italic;">/*+ GATHER_PLAN_STATISTICS RUN2 */</span> COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">FROM</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY
<span style="color: #993333; font-weight: bold;">WHERE</span> C <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> B <span style="color: #66cc66;">&gt;=</span> <span style="color: #cc66cc;">93</span> <span style="color: #993333; font-weight: bold;">AND</span> D<span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span>;
&nbsp;
  COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span>
<span style="color: #808080; font-style: italic;">----------</span>
         <span style="color: #cc66cc;">0</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #993333; font-weight: bold;">TABLE</span><span style="color: #66cc66;">&#40;</span>DBMS_XPLAN<span style="color: #66cc66;">.</span>DISPLAY_CURSOR<span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><span style="color: #ff0000;">'ALLSTATS LAST +COST'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
PLAN_TABLE_OUTPUT
<span style="color: #808080; font-style: italic;">---------------------</span>
SQL_ID  f5mkaprk7fzt8<span style="color: #66cc66;">,</span> child number <span style="color: #cc66cc;">0</span>
<span style="color: #808080; font-style: italic;">-------------------------------------</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #808080; font-style: italic;">/*+ GATHER_PLAN_STATISTICS RUN2 */</span> COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">FROM</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY
<span style="color: #993333; font-weight: bold;">WHERE</span> C <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> B <span style="color: #66cc66;">&gt;=</span> <span style="color: #cc66cc;">93</span> <span style="color: #993333; font-weight: bold;">AND</span> D<span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span>
&nbsp;
Plan hash value: <span style="color: #cc66cc;">1903509519</span>
&nbsp;
<span style="color: #808080; font-style: italic;">------------------------------------------------------------------------------------------------</span>
<span style="color: #66cc66;">|</span> Id <span style="color: #66cc66;">|</span>Operation                    <span style="color: #66cc66;">|</span>Name      <span style="color: #66cc66;">|</span>E<span style="color: #66cc66;">-</span>Rows<span style="color: #66cc66;">|</span> Cost <span style="color: #66cc66;">&#40;</span>%CPU<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>A<span style="color: #66cc66;">-</span>Rows<span style="color: #66cc66;">|</span>   A<span style="color: #66cc66;">-</span>Time   <span style="color: #66cc66;">|</span> Buffers <span style="color: #66cc66;">|</span>
<span style="color: #808080; font-style: italic;">------------------------------------------------------------------------------------------------</span>
<span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">|</span>SELECT STATEMENT             <span style="color: #66cc66;">|</span>          <span style="color: #66cc66;">|</span>      <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">4</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.07</span> <span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">23437</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span> SORT AGGREGATE              <span style="color: #66cc66;">|</span>          <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span>            <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.07</span> <span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">23437</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|*</span>  <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">|</span>  <span style="color: #993333; font-weight: bold;">TABLE</span> ACCESS <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ROWID<span style="color: #66cc66;">|</span>DUMMY     <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">7</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">4</span>   <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.07</span> <span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">23437</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|*</span>  <span style="color: #cc66cc;">3</span><span style="color: #66cc66;">|</span>   <span style="color: #993333; font-weight: bold;">INDEX</span> RANGE SCAN          <span style="color: #66cc66;">|</span>DUMMY_IDX2<span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">3</span>   <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span> <span style="color: #cc66cc;">70000</span><span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.03</span> <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">197</span> <span style="color: #66cc66;">|</span>
<span style="color: #808080; font-style: italic;">------------------------------------------------------------------------------------------------</span>
&nbsp;
Predicate Information <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> operation id<span style="color: #66cc66;">&#41;</span>:
<span style="color: #808080; font-style: italic;">---------------------------------------------------</span>
&nbsp;
   <span style="color: #cc66cc;">2</span> <span style="color: #66cc66;">-</span> filter<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;C&quot;</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> <span style="color: #ff0000;">&quot;D&quot;</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
   <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">-</span> access<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;DUMMY&quot;</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">&quot;SYS_NC00006$&quot;</span><span style="color: #66cc66;">&lt;=</span>HEXTORAW<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'3EA1FF'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span>
       filter<span style="color: #66cc66;">&#40;</span>SYS_OP_UNDESCEND<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;DUMMY&quot;</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">&quot;SYS_NC00006$&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&gt;=</span><span style="color: #cc66cc;">93</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>The complete 10053 can be viewed here: <a href="/papers/MD_ora_9626.trc">10053 Trace of bad plan.</a></p>
<p>It can be seen that the execution plan contains the following statement and uses a very, very low density.</p>
<blockquote>
<pre>  Using prorated density: 0.000002 of col #6 as selectvity of out-of-range/non-existent value pred</pre>
</blockquote>
<p>So, instead of using Index DUMMY_IDX3, which contains all three predicate columns, especially more selective equality predicate &#8220;C = 9592&#8243;, it uses quite unselective index DUMMY_IDX2, only because density is calculated wrongly.</p>
<p>If the statement is executed a second time, the right plan is used. Cardinality feedback feature kicks in here. Please note the higher costs and higher cardinality for index range scan at row source operation id 3.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">connect ADmdecker
Enter password:
Connected<span style="color: #66cc66;">.</span>
<span style="color: #993333; font-weight: bold;">ALTER</span> SESSION <span style="color: #993333; font-weight: bold;">SET</span> EVENTS<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'10053 trace name context forever, level 1'</span>;
&nbsp;
Session altered<span style="color: #66cc66;">.</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #808080; font-style: italic;">/*+ GATHER_PLAN_STATISTICS RUN2 */</span> COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">FROM</span> ADMDECKER<span style="color: #66cc66;">.</span>DUMMY
<span style="color: #993333; font-weight: bold;">WHERE</span> C <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> B <span style="color: #66cc66;">&gt;=</span> <span style="color: #cc66cc;">93</span> <span style="color: #993333; font-weight: bold;">AND</span> D<span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span>;
&nbsp;
  COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span>
<span style="color: #808080; font-style: italic;">----------</span>
         <span style="color: #cc66cc;">0</span>
&nbsp;
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #993333; font-weight: bold;">TABLE</span><span style="color: #66cc66;">&#40;</span>DBMS_XPLAN<span style="color: #66cc66;">.</span>DISPLAY_CURSOR<span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><span style="color: #ff0000;">'ALLSTATS LAST +COST'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
PLAN_TABLE_OUTPUT
<span style="color: #808080; font-style: italic;">----------------------</span>
SQL_ID  f5mkaprk7fzt8<span style="color: #66cc66;">,</span> child number <span style="color: #cc66cc;">1</span>
<span style="color: #808080; font-style: italic;">-------------------------------------</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #808080; font-style: italic;">/*+ GATHER_PLAN_STATISTICS RUN2 */</span> COUNT<span style="color: #66cc66;">&#40;</span>E<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">FROM</span> MDECKER<span style="color: #66cc66;">.</span>DUMMY
<span style="color: #993333; font-weight: bold;">WHERE</span> C <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> B <span style="color: #66cc66;">&gt;=</span> <span style="color: #cc66cc;">93</span> <span style="color: #993333; font-weight: bold;">AND</span> D<span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span>
&nbsp;
Plan hash value: <span style="color: #cc66cc;">1171978535</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-------------------------------------------------------------------------------------------------</span>
<span style="color: #66cc66;">|</span> Id <span style="color: #66cc66;">|</span>Operation                    <span style="color: #66cc66;">|</span>Name       <span style="color: #66cc66;">|</span>E<span style="color: #66cc66;">-</span>Rows<span style="color: #66cc66;">|</span> Cost <span style="color: #66cc66;">&#40;</span>%CPU<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>A<span style="color: #66cc66;">-</span>Rows <span style="color: #66cc66;">|</span>   A<span style="color: #66cc66;">-</span>Time   <span style="color: #66cc66;">|</span>Buffers <span style="color: #66cc66;">|</span>
<span style="color: #808080; font-style: italic;">-------------------------------------------------------------------------------------------------</span>
<span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">|</span>SELECT STATEMENT             <span style="color: #66cc66;">|</span>           <span style="color: #66cc66;">|</span>      <span style="color: #66cc66;">|</span>    <span style="color: #cc66cc;">11</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span> <span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.01</span> <span style="color: #66cc66;">|</span>      <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">|</span> SORT AGGREGATE              <span style="color: #66cc66;">|</span>           <span style="color: #66cc66;">|</span>    <span style="color: #cc66cc;">1</span> <span style="color: #66cc66;">|</span>            <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">1</span> <span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.01</span> <span style="color: #66cc66;">|</span>      <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|</span>   <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">|</span>  <span style="color: #993333; font-weight: bold;">TABLE</span> ACCESS <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #993333; font-weight: bold;">INDEX</span> ROWID<span style="color: #66cc66;">|</span>DUMMY      <span style="color: #66cc66;">|</span>    <span style="color: #cc66cc;">7</span> <span style="color: #66cc66;">|</span>    <span style="color: #cc66cc;">11</span>   <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.01</span> <span style="color: #66cc66;">|</span>      <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">|</span>
<span style="color: #66cc66;">|*</span>  <span style="color: #cc66cc;">3</span><span style="color: #66cc66;">|</span>   <span style="color: #993333; font-weight: bold;">INDEX</span> RANGE SCAN          <span style="color: #66cc66;">|</span>DUMMY_IDX3 <span style="color: #66cc66;">|</span>    <span style="color: #cc66cc;">7</span> <span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">3</span>   <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">|</span>     <span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">|</span>00:00:<span style="color: #cc66cc;">00.01</span> <span style="color: #66cc66;">|</span>      <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">|</span>
<span style="color: #808080; font-style: italic;">-------------------------------------------------------------------------------------------------</span>
&nbsp;
Predicate Information <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> operation id<span style="color: #66cc66;">&#41;</span>:
<span style="color: #808080; font-style: italic;">---------------------------------------------------</span>
&nbsp;
   <span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">-</span> access<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;C&quot;</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">9592</span> <span style="color: #993333; font-weight: bold;">AND</span> <span style="color: #ff0000;">&quot;B&quot;</span><span style="color: #66cc66;">&gt;=</span><span style="color: #cc66cc;">93</span> <span style="color: #993333; font-weight: bold;">AND</span> <span style="color: #ff0000;">&quot;D&quot;</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
       filter<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;D&quot;</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
&nbsp;
Note
<span style="color: #808080; font-style: italic;">-----</span>
 <span style="color: #66cc66;">-</span> cardinality feedback used <span style="color: #993333; font-weight: bold;">FOR</span> this statement</pre></div></div>

<p>The complete 10053 of the new plan (using cardinality feedback feature) can be viewed here: <a href="/papers/MD_ora_12224.trc">10053 Trace of good plan using cardinality feedback.</a> More information about this little documented new feature can be found at <a href="http://dioncho.wordpress.com/2009/12/17/trivial-research-on-the-cardinality-feedback-on-11gr2/">Dion Cho´s blog </a> and from this <a href="http://www.vldb.org/pvldb/1/1454178.pdf">Oracle paper</a>.</p>
<p><strong>Update: 06.10.2011<br />
</strong></p>
<blockquote><p>Oracle Support has provided Patch 11072246, which fixes a bug in DBMS_STATS on how min/max values are set for hidden desc columns. After installing the patch, the bug is gone and the execution plan is optimal.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2010/10/25/suboptimal-prorated-density-calculation-with-desc-index-cardinality-feedback-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>opatch auto problem with Grid Infrastructure PSUs</title>
		<link>http://www.ora-solutions.net/web/2010/09/29/opatch-auto-problem-with-grid-infrastructure-psus/</link>
		<comments>http://www.ora-solutions.net/web/2010/09/29/opatch-auto-problem-with-grid-infrastructure-psus/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 11:33:06 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[11gR2]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=878</guid>
		<description><![CDATA[With Grid Infrastructure, Oracle customers are encouraged to seperate privileges between Grid Infrastructure and RDBMS owner. Therefore we are using grid11 as GI owner and rdbms11 as RDBMS owner. However, due to a bug in opatch (which is currently being worked on by Oracle) &#8220;opatch auto&#8221; functionality does not work as documented in the PSU [...]]]></description>
			<content:encoded><![CDATA[<p>With Grid Infrastructure, Oracle customers are encouraged to seperate privileges between Grid Infrastructure and RDBMS owner. Therefore we are using grid11 as GI owner and rdbms11 as RDBMS owner. However, due to a bug in opatch (which is currently being worked on by Oracle) &#8220;opatch auto&#8221; functionality does not work as documented in the PSU readme. Workaround is to apply the patch manually. The procedure is similar to the CRS bundles we know from previous releases.</p>
<p>In the following, I have documented the procedure to apply the PSU patch manually.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> GI_PSU
<span style="color: #7a0874; font-weight: bold;">cd</span> GI_PSU
<span style="color: #c20cb9; font-weight: bold;">unzip</span> –d . ..<span style="color: #000000; font-weight: bold;">/</span>GI_PSU_112012_p9655006_112010_Linux-x86-64.zip
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>grid11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckConflictAgainstOHWithDetail <span style="color: #660033;">-oh</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid <span style="color: #660033;">-phBaseDir</span> .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span>
...
Prereq <span style="color: #ff0000;">&quot;checkConflictAgainstOHWithDetail&quot;</span> passed.
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">as</span> root:
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>node1 grid<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># cd /stage/GI_PSU</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># /opt/oracle/grid11/11.2.0.1/grid/OPatch/opatch  version</span>
Invoking OPatch 11.2.0.1.3
&nbsp;
OPatch Version: 11.2.0.1.3
&nbsp;
OPatch succeeded.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># /opt/oracle/grid11/11.2.0.1/grid/OPatch/opatch auto . -oh /opt/oracle/grid11/11.2.0.1/grid</span>
Executing <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>patch112.pl <span style="color: #660033;">-patchdir</span> . <span style="color: #660033;">-patchn</span> . <span style="color: #660033;">-oh</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid <span style="color: #660033;">-paramfile</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>crsconfig_params
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">27</span>:<span style="color: #000000;">24</span>: Parsing the host name
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">27</span>:<span style="color: #000000;">24</span>: Checking <span style="color: #000000; font-weight: bold;">for</span> super user privileges
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">27</span>:<span style="color: #000000;">24</span>: User has super user privileges
Using configuration parameter <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>crsconfig_params
CRS-<span style="color: #000000;">2791</span>: Starting shutdown of Oracle High Availability Services-managed resources on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.crsd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2790</span>: Starting shutdown of Cluster Ready Services-managed resources on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.LISTENER.lsnr'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.CRS.dg'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.registry.acfs'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.LISTENER.lsnr'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.node1.vip'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.node1.vip'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.node1.vip'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.registry.acfs'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.node1.vip'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.CRS.dg'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.ons'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.eons'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.ons'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.net1.network'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.net1.network'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.eons'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2792</span>: Shutdown of Cluster Ready Services-managed resources on <span style="color: #ff0000;">'node1'</span> has completed
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.crsd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.gpnpd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.cssdmonitor'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.ctssd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.evmd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.drivers.acfs'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.mdnsd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.cssdmonitor'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.gpnpd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.evmd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.mdnsd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.ctssd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.drivers.acfs'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.cssd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.cssd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.diskmon'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.gipcd'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.diskmon'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.gipcd'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2793</span>: Shutdown of Oracle High Availability Services-managed resources on <span style="color: #ff0000;">'node1'</span> has completed
CRS-<span style="color: #000000;">4133</span>: Oracle High Availability Services has been stopped.
Successfully unlock <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
UTIL session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_10-<span style="color: #000000;">28</span>-11AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking utility <span style="color: #ff0000;">&quot;napply&quot;</span>
Checking conflict among patches...
Checking <span style="color: #000000; font-weight: bold;">if</span> Oracle Home has components required by patches...
Checking conflicts against Oracle Home...
OPatch continues with these patches:   <span style="color: #000000;">9654983</span>
&nbsp;
Do you want to proceed? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
&nbsp;
Running prerequisite checks...
Provide your email address to be informed of security issues, <span style="color: #c20cb9; font-weight: bold;">install</span> and
initiate Oracle Configuration Manager. Easier <span style="color: #000000; font-weight: bold;">for</span> you <span style="color: #000000; font-weight: bold;">if</span> you use your My
Oracle Support Email address<span style="color: #000000; font-weight: bold;">/</span>User Name.
Visit http:<span style="color: #000000; font-weight: bold;">//</span>www.oracle.com<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>policies.html <span style="color: #000000; font-weight: bold;">for</span> details.
Email address<span style="color: #000000; font-weight: bold;">/</span>User Name:
&nbsp;
You have not provided an email address <span style="color: #000000; font-weight: bold;">for</span> notification of security issues.
Do you wish to remain uninformed of security issues <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>Y<span style="color: #7a0874; font-weight: bold;">&#93;</span>es, <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>o<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>:  Y
&nbsp;
You selected <span style="color: #660033;">-local</span> option, hence OPatch will <span style="color: #c20cb9; font-weight: bold;">patch</span> the <span style="color: #7a0874; font-weight: bold;">local</span> system only.
&nbsp;
Please shutdown Oracle instances running out of this ORACLE_HOME on the <span style="color: #7a0874; font-weight: bold;">local</span> system.
<span style="color: #7a0874; font-weight: bold;">&#40;</span>Oracle Home = <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
Is the <span style="color: #7a0874; font-weight: bold;">local</span> system ready <span style="color: #000000; font-weight: bold;">for</span> patching? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'NApply'</span> <span style="color: #000000; font-weight: bold;">for</span> restore. This might take a while...
Execution of <span style="color: #ff0000;">'sh /stage/GI_PSU/9654983/custom/scripts/pre -apply 9654983 '</span>:
&nbsp;
Return Code = <span style="color: #000000;">0</span>
&nbsp;
Applying <span style="color: #c20cb9; font-weight: bold;">patch</span> 9654983...
&nbsp;
ApplySession applying interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> to OH <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span>
ApplySession: Optional component<span style="color: #7a0874; font-weight: bold;">&#40;</span>s<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> oracle.oraolap, 11.2.0.1.0 <span style="color: #7a0874; font-weight: bold;">&#93;</span> , <span style="color: #7a0874; font-weight: bold;">&#91;</span> oracle.precomp.common, 11.2.0.1.0 <span style="color: #7a0874; font-weight: bold;">&#93;</span>  not present <span style="color: #000000; font-weight: bold;">in</span> the Oracle Home or a higher version is found.
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> <span style="color: #000000; font-weight: bold;">for</span> rollback. This might take a while...
&nbsp;
Patching component oracle.rdbms.rsf, 11.2.0.1.0...
Updating archive <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #ff0000;">&quot;/opt/oracle/grid11/11.2.0.1/grid/lib/libpls11.a&quot;</span>  with <span style="color: #ff0000;">&quot;lib/libpls11.a/phd.o&quot;</span>
...
ApplySession adding interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> to inventory
&nbsp;
Verifying the update...
Inventory check OK: Patch ID <span style="color: #000000;">9654983</span> is registered <span style="color: #000000; font-weight: bold;">in</span> Oracle Home inventory with proper meta-data.
Files check OK: Files from Patch ID <span style="color: #000000;">9654983</span> are present <span style="color: #000000; font-weight: bold;">in</span> Oracle Home.
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target client_sharedlib
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target irman
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target ikfod
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target irenamedg
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target idgmgrl
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target imkpatch
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target client_sharedlib
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target ioracle
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target iwrap
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target itnslsnr
Execution of <span style="color: #ff0000;">'sh /stage/GI_PSU/9654983/custom/scripts/post -apply 9654983 '</span>:
&nbsp;
Return Code = <span style="color: #000000;">0</span>
&nbsp;
The <span style="color: #7a0874; font-weight: bold;">local</span> system has been patched and can be restarted.
&nbsp;
UtilSession: N-Apply done.
&nbsp;
OPatch succeeded.
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
UTIL session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_10-<span style="color: #000000;">32</span>-47AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking utility <span style="color: #ff0000;">&quot;napply&quot;</span>
Checking conflict among patches...
Checking <span style="color: #000000; font-weight: bold;">if</span> Oracle Home has components required by patches...
Checking conflicts against Oracle Home...
OPatch continues with these patches:   <span style="color: #000000;">9655006</span>
&nbsp;
Do you want to proceed? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
&nbsp;
Running prerequisite checks...
Provide your email address to be informed of security issues, <span style="color: #c20cb9; font-weight: bold;">install</span> and
initiate Oracle Configuration Manager. Easier <span style="color: #000000; font-weight: bold;">for</span> you <span style="color: #000000; font-weight: bold;">if</span> you use your My
Oracle Support Email address<span style="color: #000000; font-weight: bold;">/</span>User Name.
Visit http:<span style="color: #000000; font-weight: bold;">//</span>www.oracle.com<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>policies.html <span style="color: #000000; font-weight: bold;">for</span> details.
Email address<span style="color: #000000; font-weight: bold;">/</span>User Name:
&nbsp;
You have not provided an email address <span style="color: #000000; font-weight: bold;">for</span> notification of security issues.
Do you wish to remain uninformed of security issues <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>Y<span style="color: #7a0874; font-weight: bold;">&#93;</span>es, <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>o<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>:  Y
&nbsp;
You selected <span style="color: #660033;">-local</span> option, hence OPatch will <span style="color: #c20cb9; font-weight: bold;">patch</span> the <span style="color: #7a0874; font-weight: bold;">local</span> system only.
&nbsp;
Please shutdown Oracle instances running out of this ORACLE_HOME on the <span style="color: #7a0874; font-weight: bold;">local</span> system.
<span style="color: #7a0874; font-weight: bold;">&#40;</span>Oracle Home = <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
Is the <span style="color: #7a0874; font-weight: bold;">local</span> system ready <span style="color: #000000; font-weight: bold;">for</span> patching? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'NApply'</span> <span style="color: #000000; font-weight: bold;">for</span> restore. This might take a while...
&nbsp;
Applying <span style="color: #c20cb9; font-weight: bold;">patch</span> 9655006...
&nbsp;
ApplySession applying interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> to OH <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span>
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> <span style="color: #000000; font-weight: bold;">for</span> rollback. This might take a while...
&nbsp;
Patching component oracle.crs, 11.2.0.1.0...
Copying <span style="color: #c20cb9; font-weight: bold;">file</span> to <span style="color: #ff0000;">&quot;/opt/oracle/grid11/11.2.0.1/grid/bin/appagent.bin&quot;</span>
...
ApplySession adding interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> to inventory
&nbsp;
Verifying the update...
Inventory check OK: Patch ID <span style="color: #000000;">9655006</span> is registered <span style="color: #000000; font-weight: bold;">in</span> Oracle Home inventory with proper meta-data.
Files check OK: Files from Patch ID <span style="color: #000000;">9655006</span> are present <span style="color: #000000; font-weight: bold;">in</span> Oracle Home.
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target install_srvm
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target <span style="color: #c20cb9; font-weight: bold;">install</span>
&nbsp;
The <span style="color: #7a0874; font-weight: bold;">local</span> system has been patched and can be restarted.
&nbsp;
UtilSession: N-Apply done.
&nbsp;
OPatch succeeded.
CRS-<span style="color: #000000;">4123</span>: Oracle High Availability Services has been started.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>node2 ~<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># cd /stage/GI_PSU</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>node2 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># /opt/oracle/grid11/11.2.0.1/grid/OPatch/opatch auto . -oh /opt/oracle/grid11/11.2.0.1/grid</span>
Executing <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>patch112.pl <span style="color: #660033;">-patchdir</span> . <span style="color: #660033;">-patchn</span> . <span style="color: #660033;">-oh</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid <span style="color: #660033;">-paramfile</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>crsconfig_params
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">39</span>:<span style="color: #000000;">36</span>: Parsing the host name
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">39</span>:<span style="color: #000000;">36</span>: Checking <span style="color: #000000; font-weight: bold;">for</span> super user privileges
<span style="color: #000000;">2010</span>-09-<span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">39</span>:<span style="color: #000000;">36</span>: User has super user privileges
Using configuration parameter <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>crs<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>crsconfig_params
CRS-<span style="color: #000000;">2791</span>: Starting shutdown of Oracle High Availability Services-managed resources on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.crsd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2790</span>: Starting shutdown of Cluster Ready Services-managed resources on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.LISTENER.lsnr'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.CRS.dg'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.registry.acfs'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.LISTENER.lsnr'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.node2.vip'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.node2.vip'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.node2.vip'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.registry.acfs'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.scan2.vip'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2672</span>: Attempting to start <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node1'</span>
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.node2.vip'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2676</span>: Start of <span style="color: #ff0000;">'ora.LISTENER_SCAN2.lsnr'</span> on <span style="color: #ff0000;">'node1'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.CRS.dg'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.ons'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.eons'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.ons'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.net1.network'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.net1.network'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.eons'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2792</span>: Shutdown of Cluster Ready Services-managed resources on <span style="color: #ff0000;">'node2'</span> has completed
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.crsd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.cssdmonitor'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.ctssd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.evmd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.drivers.acfs'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.mdnsd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.cssdmonitor'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.mdnsd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.evmd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.drivers.acfs'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.asm'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.ctssd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.cssd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.cssd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.gpnpd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.diskmon'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.gpnpd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2673</span>: Attempting to stop <span style="color: #ff0000;">'ora.gipcd'</span> on <span style="color: #ff0000;">'node2'</span>
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.gipcd'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2677</span>: Stop of <span style="color: #ff0000;">'ora.diskmon'</span> on <span style="color: #ff0000;">'node2'</span> succeeded
CRS-<span style="color: #000000;">2793</span>: Shutdown of Oracle High Availability Services-managed resources on <span style="color: #ff0000;">'node2'</span> has completed
CRS-<span style="color: #000000;">4133</span>: Oracle High Availability Services has been stopped.
Successfully unlock <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
UTIL session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_10-<span style="color: #000000;">40</span>-25AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking utility <span style="color: #ff0000;">&quot;napply&quot;</span>
Checking conflict among patches...
Checking <span style="color: #000000; font-weight: bold;">if</span> Oracle Home has components required by patches...
Checking conflicts against Oracle Home...
OPatch continues with these patches:   <span style="color: #000000;">9654983</span>
&nbsp;
Do you want to proceed? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
&nbsp;
Running prerequisite checks...
Provide your email address to be informed of security issues, <span style="color: #c20cb9; font-weight: bold;">install</span> and
initiate Oracle Configuration Manager. Easier <span style="color: #000000; font-weight: bold;">for</span> you <span style="color: #000000; font-weight: bold;">if</span> you use your My
Oracle Support Email address<span style="color: #000000; font-weight: bold;">/</span>User Name.
Visit http:<span style="color: #000000; font-weight: bold;">//</span>www.oracle.com<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>policies.html <span style="color: #000000; font-weight: bold;">for</span> details.
Email address<span style="color: #000000; font-weight: bold;">/</span>User Name:
&nbsp;
You have not provided an email address <span style="color: #000000; font-weight: bold;">for</span> notification of security issues.
Do you wish to remain uninformed of security issues <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>Y<span style="color: #7a0874; font-weight: bold;">&#93;</span>es, <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>o<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>:  Y
&nbsp;
You selected <span style="color: #660033;">-local</span> option, hence OPatch will <span style="color: #c20cb9; font-weight: bold;">patch</span> the <span style="color: #7a0874; font-weight: bold;">local</span> system only.
&nbsp;
Please shutdown Oracle instances running out of this ORACLE_HOME on the <span style="color: #7a0874; font-weight: bold;">local</span> system.
<span style="color: #7a0874; font-weight: bold;">&#40;</span>Oracle Home = <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
Is the <span style="color: #7a0874; font-weight: bold;">local</span> system ready <span style="color: #000000; font-weight: bold;">for</span> patching? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'NApply'</span> <span style="color: #000000; font-weight: bold;">for</span> restore. This might take a while...
Execution of <span style="color: #ff0000;">'sh /stage/GI_PSU/9654983/custom/scripts/pre -apply 9654983 '</span>:
&nbsp;
Return Code = <span style="color: #000000;">0</span>
&nbsp;
Applying <span style="color: #c20cb9; font-weight: bold;">patch</span> 9654983...
&nbsp;
ApplySession applying interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> to OH <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span>
ApplySession: Optional component<span style="color: #7a0874; font-weight: bold;">&#40;</span>s<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> oracle.oraolap, 11.2.0.1.0 <span style="color: #7a0874; font-weight: bold;">&#93;</span> , <span style="color: #7a0874; font-weight: bold;">&#91;</span> oracle.precomp.common, 11.2.0.1.0 <span style="color: #7a0874; font-weight: bold;">&#93;</span>  not present <span style="color: #000000; font-weight: bold;">in</span> the Oracle Home or a higher version is found.
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> <span style="color: #000000; font-weight: bold;">for</span> rollback. This might take a while...
&nbsp;
Patching component oracle.rdbms.rsf, 11.2.0.1.0...
Updating archive <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #ff0000;">&quot;/opt/oracle/grid11/11.2.0.1/grid/lib/libpls11.a&quot;</span>  with <span style="color: #ff0000;">&quot;lib/libpls11.a/phd.o&quot;</span>
...
ApplySession adding interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9654983'</span> to inventory
&nbsp;
Verifying the update...
Inventory check OK: Patch ID <span style="color: #000000;">9654983</span> is registered <span style="color: #000000; font-weight: bold;">in</span> Oracle Home inventory with proper meta-data.
Files check OK: Files from Patch ID <span style="color: #000000;">9654983</span> are present <span style="color: #000000; font-weight: bold;">in</span> Oracle Home.
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target client_sharedlib
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target irman
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target ikfod
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target irenamedg
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target idgmgrl
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target imkpatch
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target client_sharedlib
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target ioracle
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target iwrap
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target itnslsnr
Execution of <span style="color: #ff0000;">'sh /stage/GI_PSU/9654983/custom/scripts/post -apply 9654983 '</span>:
&nbsp;
Return Code = <span style="color: #000000;">0</span>
&nbsp;
The <span style="color: #7a0874; font-weight: bold;">local</span> system has been patched and can be restarted.
&nbsp;
UtilSession: N-Apply done.
&nbsp;
OPatch succeeded.
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
UTIL session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_10-<span style="color: #000000;">42</span>-48AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking utility <span style="color: #ff0000;">&quot;napply&quot;</span>
Checking conflict among patches...
Checking <span style="color: #000000; font-weight: bold;">if</span> Oracle Home has components required by patches...
Checking conflicts against Oracle Home...
OPatch continues with these patches:   <span style="color: #000000;">9655006</span>
&nbsp;
Do you want to proceed? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
&nbsp;
Running prerequisite checks...
Provide your email address to be informed of security issues, <span style="color: #c20cb9; font-weight: bold;">install</span> and
initiate Oracle Configuration Manager. Easier <span style="color: #000000; font-weight: bold;">for</span> you <span style="color: #000000; font-weight: bold;">if</span> you use your My
Oracle Support Email address<span style="color: #000000; font-weight: bold;">/</span>User Name.
Visit http:<span style="color: #000000; font-weight: bold;">//</span>www.oracle.com<span style="color: #000000; font-weight: bold;">/</span>support<span style="color: #000000; font-weight: bold;">/</span>policies.html <span style="color: #000000; font-weight: bold;">for</span> details.
Email address<span style="color: #000000; font-weight: bold;">/</span>User Name:
&nbsp;
You have not provided an email address <span style="color: #000000; font-weight: bold;">for</span> notification of security issues.
Do you wish to remain uninformed of security issues <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>Y<span style="color: #7a0874; font-weight: bold;">&#93;</span>es, <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>o<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>N<span style="color: #7a0874; font-weight: bold;">&#93;</span>:  Y
&nbsp;
You selected <span style="color: #660033;">-local</span> option, hence OPatch will <span style="color: #c20cb9; font-weight: bold;">patch</span> the <span style="color: #7a0874; font-weight: bold;">local</span> system only.
&nbsp;
Please shutdown Oracle instances running out of this ORACLE_HOME on the <span style="color: #7a0874; font-weight: bold;">local</span> system.
<span style="color: #7a0874; font-weight: bold;">&#40;</span>Oracle Home = <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
Is the <span style="color: #7a0874; font-weight: bold;">local</span> system ready <span style="color: #000000; font-weight: bold;">for</span> patching? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">|</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span>
y
User Responded with: Y
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'NApply'</span> <span style="color: #000000; font-weight: bold;">for</span> restore. This might take a while...
&nbsp;
Applying <span style="color: #c20cb9; font-weight: bold;">patch</span> 9655006...
&nbsp;
ApplySession applying interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> to OH <span style="color: #ff0000;">'/opt/oracle/grid11/11.2.0.1/grid'</span>
Backing up files affected by the <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> <span style="color: #000000; font-weight: bold;">for</span> rollback. This might take a while...
&nbsp;
Patching component oracle.crs, 11.2.0.1.0...
Copying <span style="color: #c20cb9; font-weight: bold;">file</span> to <span style="color: #ff0000;">&quot;/opt/oracle/grid11/11.2.0.1/grid/bin/appagent.bin&quot;</span>
...
ApplySession adding interim <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #ff0000;">'9655006'</span> to inventory
&nbsp;
Verifying the update...
Inventory check OK: Patch ID <span style="color: #000000;">9655006</span> is registered <span style="color: #000000; font-weight: bold;">in</span> Oracle Home inventory with proper meta-data.
Files check OK: Files from Patch ID <span style="color: #000000;">9655006</span> are present <span style="color: #000000; font-weight: bold;">in</span> Oracle Home.
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target install_srvm
Running <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">for</span> target <span style="color: #c20cb9; font-weight: bold;">install</span>
&nbsp;
The <span style="color: #7a0874; font-weight: bold;">local</span> system has been patched and can be restarted.
&nbsp;
UtilSession: N-Apply done.
&nbsp;
OPatch succeeded.
CRS-<span style="color: #000000;">4123</span>: Oracle High Availability Services has been started.
&nbsp;
RDBMS Part:
&nbsp;
<span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckComponents <span style="color: #660033;">-ph</span> <span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckApplicable <span style="color: #660033;">-ph</span> <span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
PREREQ session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">10</span>-28AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking prereq <span style="color: #ff0000;">&quot;checkapplicable&quot;</span>
&nbsp;
Prereq <span style="color: #ff0000;">&quot;checkApplicable&quot;</span> <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #000000;">9655006</span> passed.
&nbsp;
OPatch succeeded.
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckConflictAgainstOH <span style="color: #660033;">-ph</span> <span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
PREREQ session
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">10</span>-45AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Invoking prereq <span style="color: #ff0000;">&quot;checkconflictagainstoh&quot;</span>
&nbsp;
Prereq <span style="color: #ff0000;">&quot;checkConflictAgainstOH&quot;</span> passed.
&nbsp;
OPatch succeeded.
&nbsp;
<span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckComponents <span style="color: #660033;">-ph</span> <span style="color: #000000;">9654983</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckApplicable <span style="color: #660033;">-ph</span> <span style="color: #000000;">9654983</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch prereq CheckConflictAgainstOH <span style="color: #660033;">-ph</span> <span style="color: #000000;">9654983</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>scripts<span style="color: #000000; font-weight: bold;">/</span>prepatch.sh <span style="color: #660033;">-dbhome</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
.<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>scripts<span style="color: #000000; font-weight: bold;">/</span>prepatch.sh completed successfully.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch napply .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span> <span style="color: #660033;">-local</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000;">9654983</span><span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 <span style="color: #000000;">9654983</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch apply <span style="color: #660033;">-local</span> <span style="color: #660033;">-oh</span> <span style="color: #007800;">$ORACLE_HOME</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> ..
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">9655006</span><span style="color: #000000; font-weight: bold;">/</span>custom<span style="color: #000000; font-weight: bold;">/</span>scripts<span style="color: #000000; font-weight: bold;">/</span>postpatch.sh <span style="color: #660033;">-dbhome</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
Reading <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>params.ora..
Reading <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>install<span style="color: #000000; font-weight: bold;">/</span>params.ora..
Parsing <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>racgwrap
Parsing <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvctl
Parsing <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvconfig
Parsing <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>cluvfy
Verifying <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>racgwrap
Verifying <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvctl
Verifying <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvconfig
Verifying <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>cluvfy
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>racgwrap
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvctl
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>srvconfig
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>cluvfy
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>racgmain
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>racgeut
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>diskmon.bin
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>lsnodes
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>osdbagrp
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>rawutl
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>srvm<span style="color: #000000; font-weight: bold;">/</span>admin<span style="color: #000000; font-weight: bold;">/</span>ractrans
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>srvm<span style="color: #000000; font-weight: bold;">/</span>admin<span style="color: #000000; font-weight: bold;">/</span>getcrshome
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>gnsd
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>crsdiag.pl
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libhasgen11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libclsra11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libdbcfg11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libocr11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libocrb11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libocrutl11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libuini11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>librdjni11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libgns11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libgnsjni11.so
Reapplying <span style="color: #c20cb9; font-weight: bold;">file</span> permissions on <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libagfw11.so
&nbsp;
The same steps have to be repeated <span style="color: #000000; font-weight: bold;">for</span> Node2.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>grid11<span style="color: #000000; font-weight: bold;">@</span>node1 ~<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch lsinventory
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">20</span>-41AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Lsinventory Output <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>lsinv<span style="color: #000000; font-weight: bold;">/</span>lsinventory2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">20</span>-41AM.txt
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
Installed Top-level Products <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
&nbsp;
Oracle Grid Infrastructure                                           11.2.0.1.0
There are <span style="color: #000000;">1</span> products installed <span style="color: #000000; font-weight: bold;">in</span> this Oracle Home.
&nbsp;
Interim patches <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> :
&nbsp;
Patch  <span style="color: #000000;">9655006</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">35</span>:<span style="color: #000000;">11</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">6</span> Jul <span style="color: #000000;">2010</span>, <span style="color: #000000;">12</span>:00:<span style="color: #000000;">17</span> hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9655006</span>, <span style="color: #000000;">9778840</span>, <span style="color: #000000;">9343627</span>, <span style="color: #000000;">9783609</span>, <span style="color: #000000;">9262748</span>, <span style="color: #000000;">9262722</span>
&nbsp;
Patch  <span style="color: #000000;">9654983</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">32</span>:<span style="color: #000000;">30</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">18</span> Jun <span style="color: #000000;">2010</span>, 00:<span style="color: #000000;">16</span>:02 hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9068088</span>, <span style="color: #000000;">9363384</span>, <span style="color: #000000;">8865718</span>, <span style="color: #000000;">8898852</span>, <span style="color: #000000;">8801119</span>, <span style="color: #000000;">9054253</span>, <span style="color: #000000;">8725286</span>, <span style="color: #000000;">8974548</span>
     <span style="color: #000000;">9093300</span>, <span style="color: #000000;">8909984</span>, <span style="color: #000000;">8755082</span>, <span style="color: #000000;">8780372</span>, <span style="color: #000000;">8664189</span>, <span style="color: #000000;">8769569</span>, <span style="color: #000000;">7519406</span>, <span style="color: #000000;">8822531</span>
     <span style="color: #000000;">7705591</span>, <span style="color: #000000;">8650719</span>, <span style="color: #000000;">9637033</span>, <span style="color: #000000;">8639114</span>, <span style="color: #000000;">8723477</span>, <span style="color: #000000;">8729793</span>, <span style="color: #000000;">8919682</span>, <span style="color: #000000;">8856478</span>
     <span style="color: #000000;">9001453</span>, <span style="color: #000000;">8733749</span>, <span style="color: #000000;">8565708</span>, <span style="color: #000000;">8735201</span>, <span style="color: #000000;">8684517</span>, <span style="color: #000000;">8870559</span>, <span style="color: #000000;">8773383</span>, <span style="color: #000000;">8981059</span>
     <span style="color: #000000;">8812705</span>, <span style="color: #000000;">9488887</span>, <span style="color: #000000;">8813366</span>, <span style="color: #000000;">9242411</span>, <span style="color: #000000;">8822832</span>, <span style="color: #000000;">8897784</span>, <span style="color: #000000;">8760714</span>, <span style="color: #000000;">8775569</span>
     <span style="color: #000000;">8671349</span>, <span style="color: #000000;">8898589</span>, <span style="color: #000000;">9714832</span>, <span style="color: #000000;">8642202</span>, <span style="color: #000000;">9011088</span>, <span style="color: #000000;">9170608</span>, <span style="color: #000000;">9369797</span>, <span style="color: #000000;">9165206</span>
     <span style="color: #000000;">8834636</span>, <span style="color: #000000;">8891037</span>, <span style="color: #000000;">8431487</span>, <span style="color: #000000;">8570322</span>, <span style="color: #000000;">8685253</span>, <span style="color: #000000;">8872096</span>, <span style="color: #000000;">8718952</span>, <span style="color: #000000;">8799099</span>
     <span style="color: #000000;">9032717</span>, <span style="color: #000000;">9399090</span>, <span style="color: #000000;">9546223</span>, <span style="color: #000000;">9713537</span>, <span style="color: #000000;">8588519</span>, <span style="color: #000000;">8783738</span>, <span style="color: #000000;">8834425</span>, <span style="color: #000000;">9454385</span>
     <span style="color: #000000;">8856497</span>, <span style="color: #000000;">8890026</span>, <span style="color: #000000;">8721315</span>, <span style="color: #000000;">8818175</span>, <span style="color: #000000;">8674263</span>, <span style="color: #000000;">9145541</span>, <span style="color: #000000;">8720447</span>, <span style="color: #000000;">9272086</span>
     <span style="color: #000000;">9467635</span>, <span style="color: #000000;">9010222</span>, <span style="color: #000000;">9197917</span>, <span style="color: #000000;">8991997</span>, <span style="color: #000000;">8661168</span>, <span style="color: #000000;">8803762</span>, <span style="color: #000000;">8769239</span>, <span style="color: #000000;">9654983</span>
     <span style="color: #000000;">8706590</span>, <span style="color: #000000;">8778277</span>, <span style="color: #000000;">8815639</span>, <span style="color: #000000;">9027691</span>, <span style="color: #000000;">9454036</span>, <span style="color: #000000;">9454037</span>, <span style="color: #000000;">9454038</span>, <span style="color: #000000;">9255542</span>
     <span style="color: #000000;">8761974</span>, <span style="color: #000000;">9275072</span>, <span style="color: #000000;">8496830</span>, <span style="color: #000000;">8702892</span>, <span style="color: #000000;">8818983</span>, <span style="color: #000000;">8475069</span>, <span style="color: #000000;">8875671</span>, <span style="color: #000000;">9328668</span>
     <span style="color: #000000;">8798317</span>, <span style="color: #000000;">8891929</span>, <span style="color: #000000;">8774868</span>, <span style="color: #000000;">8820324</span>, <span style="color: #000000;">8544696</span>, <span style="color: #000000;">8702535</span>, <span style="color: #000000;">8268775</span>, <span style="color: #000000;">9036013</span>
     <span style="color: #000000;">9363145</span>, <span style="color: #000000;">8933870</span>, <span style="color: #000000;">8405205</span>, <span style="color: #000000;">9467727</span>, <span style="color: #000000;">8822365</span>, <span style="color: #000000;">9676419</span>, <span style="color: #000000;">8761260</span>, <span style="color: #000000;">8790767</span>
     <span style="color: #000000;">8795418</span>, <span style="color: #000000;">8913269</span>, <span style="color: #000000;">8717461</span>, <span style="color: #000000;">8607693</span>, <span style="color: #000000;">8861700</span>, <span style="color: #000000;">8330783</span>, <span style="color: #000000;">8780281</span>, <span style="color: #000000;">8780711</span>
     <span style="color: #000000;">8784929</span>, <span style="color: #000000;">9341448</span>, <span style="color: #000000;">9015983</span>, <span style="color: #000000;">9119194</span>, <span style="color: #000000;">8828328</span>, <span style="color: #000000;">8665189</span>, <span style="color: #000000;">8717031</span>, <span style="color: #000000;">8832205</span>
     <span style="color: #000000;">9676420</span>, <span style="color: #000000;">8633358</span>, <span style="color: #000000;">9321701</span>, <span style="color: #000000;">9655013</span>, <span style="color: #000000;">8796511</span>, <span style="color: #000000;">9167285</span>, <span style="color: #000000;">8782971</span>, <span style="color: #000000;">8756598</span>
     <span style="color: #000000;">8703064</span>, <span style="color: #000000;">9066116</span>, <span style="color: #000000;">9007102</span>, <span style="color: #000000;">9461782</span>, <span style="color: #000000;">9352237</span>, <span style="color: #000000;">8505803</span>, <span style="color: #000000;">8753903</span>, <span style="color: #000000;">9216806</span>
     <span style="color: #000000;">8918433</span>, <span style="color: #000000;">9057443</span>, <span style="color: #000000;">8790561</span>, <span style="color: #000000;">8733225</span>, <span style="color: #000000;">9067282</span>, <span style="color: #000000;">8928276</span>, <span style="color: #000000;">9210925</span>, <span style="color: #000000;">8837736</span>
&nbsp;
Rac system comprising of multiple nodes
  Local node = node1
  Remote node = node2
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
&nbsp;
OPatch succeeded.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>grid11<span style="color: #000000; font-weight: bold;">@</span>node2 <span style="color: #000000;">9655006</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch lsinventory
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-17AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Lsinventory Output <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>grid11<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>grid<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>lsinv<span style="color: #000000; font-weight: bold;">/</span>lsinventory2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-17AM.txt
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
Installed Top-level Products <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
&nbsp;
Oracle Grid Infrastructure                                           11.2.0.1.0
There are <span style="color: #000000;">1</span> products installed <span style="color: #000000; font-weight: bold;">in</span> this Oracle Home.
&nbsp;
Interim patches <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> :
&nbsp;
Patch  <span style="color: #000000;">9655006</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">43</span>:<span style="color: #000000;">57</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">6</span> Jul <span style="color: #000000;">2010</span>, <span style="color: #000000;">12</span>:00:<span style="color: #000000;">17</span> hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9655006</span>, <span style="color: #000000;">9778840</span>, <span style="color: #000000;">9343627</span>, <span style="color: #000000;">9783609</span>, <span style="color: #000000;">9262748</span>, <span style="color: #000000;">9262722</span>
&nbsp;
Patch  <span style="color: #000000;">9654983</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">10</span>:<span style="color: #000000;">42</span>:<span style="color: #000000;">30</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">18</span> Jun <span style="color: #000000;">2010</span>, 00:<span style="color: #000000;">16</span>:02 hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9068088</span>, <span style="color: #000000;">9363384</span>, <span style="color: #000000;">8865718</span>, <span style="color: #000000;">8898852</span>, <span style="color: #000000;">8801119</span>, <span style="color: #000000;">9054253</span>, <span style="color: #000000;">8725286</span>, <span style="color: #000000;">8974548</span>
     <span style="color: #000000;">9093300</span>, <span style="color: #000000;">8909984</span>, <span style="color: #000000;">8755082</span>, <span style="color: #000000;">8780372</span>, <span style="color: #000000;">8664189</span>, <span style="color: #000000;">8769569</span>, <span style="color: #000000;">7519406</span>, <span style="color: #000000;">8822531</span>
     <span style="color: #000000;">7705591</span>, <span style="color: #000000;">8650719</span>, <span style="color: #000000;">9637033</span>, <span style="color: #000000;">8639114</span>, <span style="color: #000000;">8723477</span>, <span style="color: #000000;">8729793</span>, <span style="color: #000000;">8919682</span>, <span style="color: #000000;">8856478</span>
     <span style="color: #000000;">9001453</span>, <span style="color: #000000;">8733749</span>, <span style="color: #000000;">8565708</span>, <span style="color: #000000;">8735201</span>, <span style="color: #000000;">8684517</span>, <span style="color: #000000;">8870559</span>, <span style="color: #000000;">8773383</span>, <span style="color: #000000;">8981059</span>
     <span style="color: #000000;">8812705</span>, <span style="color: #000000;">9488887</span>, <span style="color: #000000;">8813366</span>, <span style="color: #000000;">9242411</span>, <span style="color: #000000;">8822832</span>, <span style="color: #000000;">8897784</span>, <span style="color: #000000;">8760714</span>, <span style="color: #000000;">8775569</span>
     <span style="color: #000000;">8671349</span>, <span style="color: #000000;">8898589</span>, <span style="color: #000000;">9714832</span>, <span style="color: #000000;">8642202</span>, <span style="color: #000000;">9011088</span>, <span style="color: #000000;">9170608</span>, <span style="color: #000000;">9369797</span>, <span style="color: #000000;">9165206</span>
     <span style="color: #000000;">8834636</span>, <span style="color: #000000;">8891037</span>, <span style="color: #000000;">8431487</span>, <span style="color: #000000;">8570322</span>, <span style="color: #000000;">8685253</span>, <span style="color: #000000;">8872096</span>, <span style="color: #000000;">8718952</span>, <span style="color: #000000;">8799099</span>
     <span style="color: #000000;">9032717</span>, <span style="color: #000000;">9399090</span>, <span style="color: #000000;">9546223</span>, <span style="color: #000000;">9713537</span>, <span style="color: #000000;">8588519</span>, <span style="color: #000000;">8783738</span>, <span style="color: #000000;">8834425</span>, <span style="color: #000000;">9454385</span>
     <span style="color: #000000;">8856497</span>, <span style="color: #000000;">8890026</span>, <span style="color: #000000;">8721315</span>, <span style="color: #000000;">8818175</span>, <span style="color: #000000;">8674263</span>, <span style="color: #000000;">9145541</span>, <span style="color: #000000;">8720447</span>, <span style="color: #000000;">9272086</span>
     <span style="color: #000000;">9467635</span>, <span style="color: #000000;">9010222</span>, <span style="color: #000000;">9197917</span>, <span style="color: #000000;">8991997</span>, <span style="color: #000000;">8661168</span>, <span style="color: #000000;">8803762</span>, <span style="color: #000000;">8769239</span>, <span style="color: #000000;">9654983</span>
     <span style="color: #000000;">8706590</span>, <span style="color: #000000;">8778277</span>, <span style="color: #000000;">8815639</span>, <span style="color: #000000;">9027691</span>, <span style="color: #000000;">9454036</span>, <span style="color: #000000;">9454037</span>, <span style="color: #000000;">9454038</span>, <span style="color: #000000;">9255542</span>
     <span style="color: #000000;">8761974</span>, <span style="color: #000000;">9275072</span>, <span style="color: #000000;">8496830</span>, <span style="color: #000000;">8702892</span>, <span style="color: #000000;">8818983</span>, <span style="color: #000000;">8475069</span>, <span style="color: #000000;">8875671</span>, <span style="color: #000000;">9328668</span>
     <span style="color: #000000;">8798317</span>, <span style="color: #000000;">8891929</span>, <span style="color: #000000;">8774868</span>, <span style="color: #000000;">8820324</span>, <span style="color: #000000;">8544696</span>, <span style="color: #000000;">8702535</span>, <span style="color: #000000;">8268775</span>, <span style="color: #000000;">9036013</span>
     <span style="color: #000000;">9363145</span>, <span style="color: #000000;">8933870</span>, <span style="color: #000000;">8405205</span>, <span style="color: #000000;">9467727</span>, <span style="color: #000000;">8822365</span>, <span style="color: #000000;">9676419</span>, <span style="color: #000000;">8761260</span>, <span style="color: #000000;">8790767</span>
     <span style="color: #000000;">8795418</span>, <span style="color: #000000;">8913269</span>, <span style="color: #000000;">8717461</span>, <span style="color: #000000;">8607693</span>, <span style="color: #000000;">8861700</span>, <span style="color: #000000;">8330783</span>, <span style="color: #000000;">8780281</span>, <span style="color: #000000;">8780711</span>
     <span style="color: #000000;">8784929</span>, <span style="color: #000000;">9341448</span>, <span style="color: #000000;">9015983</span>, <span style="color: #000000;">9119194</span>, <span style="color: #000000;">8828328</span>, <span style="color: #000000;">8665189</span>, <span style="color: #000000;">8717031</span>, <span style="color: #000000;">8832205</span>
     <span style="color: #000000;">9676420</span>, <span style="color: #000000;">8633358</span>, <span style="color: #000000;">9321701</span>, <span style="color: #000000;">9655013</span>, <span style="color: #000000;">8796511</span>, <span style="color: #000000;">9167285</span>, <span style="color: #000000;">8782971</span>, <span style="color: #000000;">8756598</span>
     <span style="color: #000000;">8703064</span>, <span style="color: #000000;">9066116</span>, <span style="color: #000000;">9007102</span>, <span style="color: #000000;">9461782</span>, <span style="color: #000000;">9352237</span>, <span style="color: #000000;">8505803</span>, <span style="color: #000000;">8753903</span>, <span style="color: #000000;">9216806</span>
     <span style="color: #000000;">8918433</span>, <span style="color: #000000;">9057443</span>, <span style="color: #000000;">8790561</span>, <span style="color: #000000;">8733225</span>, <span style="color: #000000;">9067282</span>, <span style="color: #000000;">8928276</span>, <span style="color: #000000;">9210925</span>, <span style="color: #000000;">8837736</span>
&nbsp;
Rac system comprising of multiple nodes
  Local node = node2
  Remote node = node1
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
&nbsp;
OPatch succeeded.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node1 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$  <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch lsinventory
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-36AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Lsinventory Output <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>lsinv<span style="color: #000000; font-weight: bold;">/</span>lsinventory2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-36AM.txt
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
Installed Top-level Products <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
&nbsp;
Oracle Database 11g                                                  11.2.0.1.0
There are <span style="color: #000000;">1</span> products installed <span style="color: #000000; font-weight: bold;">in</span> this Oracle Home.
&nbsp;
Interim patches <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> :
&nbsp;
Patch  <span style="color: #000000;">9654983</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">11</span>:<span style="color: #000000;">15</span>:<span style="color: #000000;">52</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">18</span> Jun <span style="color: #000000;">2010</span>, 00:<span style="color: #000000;">16</span>:02 hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9068088</span>, <span style="color: #000000;">9363384</span>, <span style="color: #000000;">8865718</span>, <span style="color: #000000;">8898852</span>, <span style="color: #000000;">8801119</span>, <span style="color: #000000;">9054253</span>, <span style="color: #000000;">8725286</span>, <span style="color: #000000;">8974548</span>
     <span style="color: #000000;">9093300</span>, <span style="color: #000000;">8909984</span>, <span style="color: #000000;">8755082</span>, <span style="color: #000000;">8780372</span>, <span style="color: #000000;">8664189</span>, <span style="color: #000000;">8769569</span>, <span style="color: #000000;">7519406</span>, <span style="color: #000000;">8822531</span>
     <span style="color: #000000;">7705591</span>, <span style="color: #000000;">8650719</span>, <span style="color: #000000;">9637033</span>, <span style="color: #000000;">8639114</span>, <span style="color: #000000;">8723477</span>, <span style="color: #000000;">8729793</span>, <span style="color: #000000;">8919682</span>, <span style="color: #000000;">8856478</span>
     <span style="color: #000000;">9001453</span>, <span style="color: #000000;">8733749</span>, <span style="color: #000000;">8565708</span>, <span style="color: #000000;">8735201</span>, <span style="color: #000000;">8684517</span>, <span style="color: #000000;">8870559</span>, <span style="color: #000000;">8773383</span>, <span style="color: #000000;">8981059</span>
     <span style="color: #000000;">8812705</span>, <span style="color: #000000;">9488887</span>, <span style="color: #000000;">8813366</span>, <span style="color: #000000;">9242411</span>, <span style="color: #000000;">8822832</span>, <span style="color: #000000;">8897784</span>, <span style="color: #000000;">8760714</span>, <span style="color: #000000;">8775569</span>
     <span style="color: #000000;">8671349</span>, <span style="color: #000000;">8898589</span>, <span style="color: #000000;">9714832</span>, <span style="color: #000000;">8642202</span>, <span style="color: #000000;">9011088</span>, <span style="color: #000000;">9170608</span>, <span style="color: #000000;">9369797</span>, <span style="color: #000000;">9165206</span>
     <span style="color: #000000;">8834636</span>, <span style="color: #000000;">8891037</span>, <span style="color: #000000;">8431487</span>, <span style="color: #000000;">8570322</span>, <span style="color: #000000;">8685253</span>, <span style="color: #000000;">8872096</span>, <span style="color: #000000;">8718952</span>, <span style="color: #000000;">8799099</span>
     <span style="color: #000000;">9032717</span>, <span style="color: #000000;">9399090</span>, <span style="color: #000000;">9546223</span>, <span style="color: #000000;">9713537</span>, <span style="color: #000000;">8588519</span>, <span style="color: #000000;">8783738</span>, <span style="color: #000000;">8834425</span>, <span style="color: #000000;">9454385</span>
     <span style="color: #000000;">8856497</span>, <span style="color: #000000;">8890026</span>, <span style="color: #000000;">8721315</span>, <span style="color: #000000;">8818175</span>, <span style="color: #000000;">8674263</span>, <span style="color: #000000;">9145541</span>, <span style="color: #000000;">8720447</span>, <span style="color: #000000;">9272086</span>
     <span style="color: #000000;">9467635</span>, <span style="color: #000000;">9010222</span>, <span style="color: #000000;">9197917</span>, <span style="color: #000000;">8991997</span>, <span style="color: #000000;">8661168</span>, <span style="color: #000000;">8803762</span>, <span style="color: #000000;">8769239</span>, <span style="color: #000000;">9654983</span>
     <span style="color: #000000;">8706590</span>, <span style="color: #000000;">8778277</span>, <span style="color: #000000;">8815639</span>, <span style="color: #000000;">9027691</span>, <span style="color: #000000;">9454036</span>, <span style="color: #000000;">9454037</span>, <span style="color: #000000;">9454038</span>, <span style="color: #000000;">9255542</span>
     <span style="color: #000000;">8761974</span>, <span style="color: #000000;">9275072</span>, <span style="color: #000000;">8496830</span>, <span style="color: #000000;">8702892</span>, <span style="color: #000000;">8818983</span>, <span style="color: #000000;">8475069</span>, <span style="color: #000000;">8875671</span>, <span style="color: #000000;">9328668</span>
     <span style="color: #000000;">8798317</span>, <span style="color: #000000;">8891929</span>, <span style="color: #000000;">8774868</span>, <span style="color: #000000;">8820324</span>, <span style="color: #000000;">8544696</span>, <span style="color: #000000;">8702535</span>, <span style="color: #000000;">8268775</span>, <span style="color: #000000;">9036013</span>
     <span style="color: #000000;">9363145</span>, <span style="color: #000000;">8933870</span>, <span style="color: #000000;">8405205</span>, <span style="color: #000000;">9467727</span>, <span style="color: #000000;">8822365</span>, <span style="color: #000000;">9676419</span>, <span style="color: #000000;">8761260</span>, <span style="color: #000000;">8790767</span>
     <span style="color: #000000;">8795418</span>, <span style="color: #000000;">8913269</span>, <span style="color: #000000;">8717461</span>, <span style="color: #000000;">8607693</span>, <span style="color: #000000;">8861700</span>, <span style="color: #000000;">8330783</span>, <span style="color: #000000;">8780281</span>, <span style="color: #000000;">8780711</span>
     <span style="color: #000000;">8784929</span>, <span style="color: #000000;">9341448</span>, <span style="color: #000000;">9015983</span>, <span style="color: #000000;">9119194</span>, <span style="color: #000000;">8828328</span>, <span style="color: #000000;">8665189</span>, <span style="color: #000000;">8717031</span>, <span style="color: #000000;">8832205</span>
     <span style="color: #000000;">9676420</span>, <span style="color: #000000;">8633358</span>, <span style="color: #000000;">9321701</span>, <span style="color: #000000;">9655013</span>, <span style="color: #000000;">8796511</span>, <span style="color: #000000;">9167285</span>, <span style="color: #000000;">8782971</span>, <span style="color: #000000;">8756598</span>
     <span style="color: #000000;">8703064</span>, <span style="color: #000000;">9066116</span>, <span style="color: #000000;">9007102</span>, <span style="color: #000000;">9461782</span>, <span style="color: #000000;">9352237</span>, <span style="color: #000000;">8505803</span>, <span style="color: #000000;">8753903</span>, <span style="color: #000000;">9216806</span>
     <span style="color: #000000;">8918433</span>, <span style="color: #000000;">9057443</span>, <span style="color: #000000;">8790561</span>, <span style="color: #000000;">8733225</span>, <span style="color: #000000;">9067282</span>, <span style="color: #000000;">8928276</span>, <span style="color: #000000;">9210925</span>, <span style="color: #000000;">8837736</span>
&nbsp;
Patch  <span style="color: #000000;">9655006</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">11</span>:<span style="color: #000000;">14</span>:<span style="color: #000000;">30</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">6</span> Jul <span style="color: #000000;">2010</span>, <span style="color: #000000;">12</span>:00:<span style="color: #000000;">17</span> hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9655006</span>, <span style="color: #000000;">9778840</span>, <span style="color: #000000;">9343627</span>, <span style="color: #000000;">9783609</span>, <span style="color: #000000;">9262748</span>
&nbsp;
Rac system comprising of multiple nodes
  Local node = node1
  Remote node = node2
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
&nbsp;
OPatch succeeded.
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>rdbms11<span style="color: #000000; font-weight: bold;">@</span>node2 GI_PSU<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>OPatch<span style="color: #000000; font-weight: bold;">/</span>opatch lsinventory
Invoking OPatch 11.2.0.1.3
&nbsp;
Oracle Interim Patch Installer version 11.2.0.1.3
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2010</span>, Oracle Corporation.  All rights reserved.
&nbsp;
Oracle Home       : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db
Central Inventory : <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>oraInventory
   from           : <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>oraInst.loc
OPatch version    : 11.2.0.1.3
OUI version       : 11.2.0.1.0
OUI location      : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>oui
Log <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-57AM.log
&nbsp;
Patch <span style="color: #7a0874; font-weight: bold;">history</span> <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>opatch_history.txt
&nbsp;
Lsinventory Output <span style="color: #c20cb9; font-weight: bold;">file</span> location : <span style="color: #000000; font-weight: bold;">/</span>u01<span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>oracle<span style="color: #000000; font-weight: bold;">/</span>product<span style="color: #000000; font-weight: bold;">/</span>11.2.0.1<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>opatch<span style="color: #000000; font-weight: bold;">/</span>lsinv<span style="color: #000000; font-weight: bold;">/</span>lsinventory2010-09-<span style="color: #000000;">22</span>_11-<span style="color: #000000;">21</span>-57AM.txt
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
Installed Top-level Products <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
&nbsp;
Oracle Database 11g                                                  11.2.0.1.0
There are <span style="color: #000000;">1</span> products installed <span style="color: #000000; font-weight: bold;">in</span> this Oracle Home.
&nbsp;
Interim patches <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> :
&nbsp;
Patch  <span style="color: #000000;">9654983</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">11</span>:<span style="color: #000000;">19</span>:<span style="color: #000000;">38</span> CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">18</span> Jun <span style="color: #000000;">2010</span>, 00:<span style="color: #000000;">16</span>:02 hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9068088</span>, <span style="color: #000000;">9363384</span>, <span style="color: #000000;">8865718</span>, <span style="color: #000000;">8898852</span>, <span style="color: #000000;">8801119</span>, <span style="color: #000000;">9054253</span>, <span style="color: #000000;">8725286</span>, <span style="color: #000000;">8974548</span>
     <span style="color: #000000;">9093300</span>, <span style="color: #000000;">8909984</span>, <span style="color: #000000;">8755082</span>, <span style="color: #000000;">8780372</span>, <span style="color: #000000;">8664189</span>, <span style="color: #000000;">8769569</span>, <span style="color: #000000;">7519406</span>, <span style="color: #000000;">8822531</span>
     <span style="color: #000000;">7705591</span>, <span style="color: #000000;">8650719</span>, <span style="color: #000000;">9637033</span>, <span style="color: #000000;">8639114</span>, <span style="color: #000000;">8723477</span>, <span style="color: #000000;">8729793</span>, <span style="color: #000000;">8919682</span>, <span style="color: #000000;">8856478</span>
     <span style="color: #000000;">9001453</span>, <span style="color: #000000;">8733749</span>, <span style="color: #000000;">8565708</span>, <span style="color: #000000;">8735201</span>, <span style="color: #000000;">8684517</span>, <span style="color: #000000;">8870559</span>, <span style="color: #000000;">8773383</span>, <span style="color: #000000;">8981059</span>
     <span style="color: #000000;">8812705</span>, <span style="color: #000000;">9488887</span>, <span style="color: #000000;">8813366</span>, <span style="color: #000000;">9242411</span>, <span style="color: #000000;">8822832</span>, <span style="color: #000000;">8897784</span>, <span style="color: #000000;">8760714</span>, <span style="color: #000000;">8775569</span>
     <span style="color: #000000;">8671349</span>, <span style="color: #000000;">8898589</span>, <span style="color: #000000;">9714832</span>, <span style="color: #000000;">8642202</span>, <span style="color: #000000;">9011088</span>, <span style="color: #000000;">9170608</span>, <span style="color: #000000;">9369797</span>, <span style="color: #000000;">9165206</span>
     <span style="color: #000000;">8834636</span>, <span style="color: #000000;">8891037</span>, <span style="color: #000000;">8431487</span>, <span style="color: #000000;">8570322</span>, <span style="color: #000000;">8685253</span>, <span style="color: #000000;">8872096</span>, <span style="color: #000000;">8718952</span>, <span style="color: #000000;">8799099</span>
     <span style="color: #000000;">9032717</span>, <span style="color: #000000;">9399090</span>, <span style="color: #000000;">9546223</span>, <span style="color: #000000;">9713537</span>, <span style="color: #000000;">8588519</span>, <span style="color: #000000;">8783738</span>, <span style="color: #000000;">8834425</span>, <span style="color: #000000;">9454385</span>
     <span style="color: #000000;">8856497</span>, <span style="color: #000000;">8890026</span>, <span style="color: #000000;">8721315</span>, <span style="color: #000000;">8818175</span>, <span style="color: #000000;">8674263</span>, <span style="color: #000000;">9145541</span>, <span style="color: #000000;">8720447</span>, <span style="color: #000000;">9272086</span>
     <span style="color: #000000;">9467635</span>, <span style="color: #000000;">9010222</span>, <span style="color: #000000;">9197917</span>, <span style="color: #000000;">8991997</span>, <span style="color: #000000;">8661168</span>, <span style="color: #000000;">8803762</span>, <span style="color: #000000;">8769239</span>, <span style="color: #000000;">9654983</span>
     <span style="color: #000000;">8706590</span>, <span style="color: #000000;">8778277</span>, <span style="color: #000000;">8815639</span>, <span style="color: #000000;">9027691</span>, <span style="color: #000000;">9454036</span>, <span style="color: #000000;">9454037</span>, <span style="color: #000000;">9454038</span>, <span style="color: #000000;">9255542</span>
     <span style="color: #000000;">8761974</span>, <span style="color: #000000;">9275072</span>, <span style="color: #000000;">8496830</span>, <span style="color: #000000;">8702892</span>, <span style="color: #000000;">8818983</span>, <span style="color: #000000;">8475069</span>, <span style="color: #000000;">8875671</span>, <span style="color: #000000;">9328668</span>
     <span style="color: #000000;">8798317</span>, <span style="color: #000000;">8891929</span>, <span style="color: #000000;">8774868</span>, <span style="color: #000000;">8820324</span>, <span style="color: #000000;">8544696</span>, <span style="color: #000000;">8702535</span>, <span style="color: #000000;">8268775</span>, <span style="color: #000000;">9036013</span>
     <span style="color: #000000;">9363145</span>, <span style="color: #000000;">8933870</span>, <span style="color: #000000;">8405205</span>, <span style="color: #000000;">9467727</span>, <span style="color: #000000;">8822365</span>, <span style="color: #000000;">9676419</span>, <span style="color: #000000;">8761260</span>, <span style="color: #000000;">8790767</span>
     <span style="color: #000000;">8795418</span>, <span style="color: #000000;">8913269</span>, <span style="color: #000000;">8717461</span>, <span style="color: #000000;">8607693</span>, <span style="color: #000000;">8861700</span>, <span style="color: #000000;">8330783</span>, <span style="color: #000000;">8780281</span>, <span style="color: #000000;">8780711</span>
     <span style="color: #000000;">8784929</span>, <span style="color: #000000;">9341448</span>, <span style="color: #000000;">9015983</span>, <span style="color: #000000;">9119194</span>, <span style="color: #000000;">8828328</span>, <span style="color: #000000;">8665189</span>, <span style="color: #000000;">8717031</span>, <span style="color: #000000;">8832205</span>
     <span style="color: #000000;">9676420</span>, <span style="color: #000000;">8633358</span>, <span style="color: #000000;">9321701</span>, <span style="color: #000000;">9655013</span>, <span style="color: #000000;">8796511</span>, <span style="color: #000000;">9167285</span>, <span style="color: #000000;">8782971</span>, <span style="color: #000000;">8756598</span>
     <span style="color: #000000;">8703064</span>, <span style="color: #000000;">9066116</span>, <span style="color: #000000;">9007102</span>, <span style="color: #000000;">9461782</span>, <span style="color: #000000;">9352237</span>, <span style="color: #000000;">8505803</span>, <span style="color: #000000;">8753903</span>, <span style="color: #000000;">9216806</span>
     <span style="color: #000000;">8918433</span>, <span style="color: #000000;">9057443</span>, <span style="color: #000000;">8790561</span>, <span style="color: #000000;">8733225</span>, <span style="color: #000000;">9067282</span>, <span style="color: #000000;">8928276</span>, <span style="color: #000000;">9210925</span>, <span style="color: #000000;">8837736</span>
&nbsp;
Patch  <span style="color: #000000;">9655006</span>      : applied on Wed Sep <span style="color: #000000;">22</span> <span style="color: #000000;">11</span>:<span style="color: #000000;">19</span>:03 CEST <span style="color: #000000;">2010</span>
Unique Patch ID:  <span style="color: #000000;">12651761</span>
   Created on <span style="color: #000000;">6</span> Jul <span style="color: #000000;">2010</span>, <span style="color: #000000;">12</span>:00:<span style="color: #000000;">17</span> hrs PST8PDT
   Bugs fixed:
     <span style="color: #000000;">9655006</span>, <span style="color: #000000;">9778840</span>, <span style="color: #000000;">9343627</span>, <span style="color: #000000;">9783609</span>, <span style="color: #000000;">9262748</span>
&nbsp;
Rac system comprising of multiple nodes
  Local node = node2
  Remote node = node1
&nbsp;
<span style="color: #660033;">--------------------------------------------------------------------------------</span>
&nbsp;
OPatch succeeded.</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2010/09/29/opatch-auto-problem-with-grid-infrastructure-psus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle Clusterware / ASM 11.1.0.7: ASM Instance crash</title>
		<link>http://www.ora-solutions.net/web/2009/10/28/oracle-clusterware-asm-11-1-0-7-asm-instance-crash/</link>
		<comments>http://www.ora-solutions.net/web/2009/10/28/oracle-clusterware-asm-11-1-0-7-asm-instance-crash/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 15:27:00 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[11g]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=779</guid>
		<description><![CDATA[During a 11gR1 Clusterware installation for a Single Instance Failover Cluster at a customer site, I have experienced an interesting behaviour, which was caused by an Oracle Bug. The environment was: 2 Node Oracle Clusterware 11.1.0.7 Cluster on Linux x86_64 using latest Recommended Patches as of October 19th. (pre PSU 11.1.0.7.1) Clusterware installed as unix [...]]]></description>
			<content:encoded><![CDATA[<p>During a 11gR1 Clusterware installation for a Single Instance Failover Cluster at a customer site, I have experienced an interesting behaviour, which was caused by an Oracle Bug.</p>
<p>The environment was:</p>
<ul>
<li>2 Node Oracle Clusterware 11.1.0.7 Cluster on Linux x86_64 using latest Recommended Patches as of October 19th. (pre PSU 11.1.0.7.1)</li>
<li>Clusterware installed as unix user crs</li>
<li>ASM installed as unix user oracle</li>
</ul>
<p>The ASM instances could be started with SQL*Plus without any problems, but if the ASM instances were started by means of clusterware using srvctl (either from root, crs or oracle) the  ASM instances would crash at diskgroup mount with:</p>
<blockquote>
<pre>ORA-07445: exception encountered: core dump  [sskgds_find_rtn_hdr()+1171]
[SIGBUS] [ADDR:0x2AACD701342C] [PC:0x25799DF]
[Non-existent physical address] []</pre>
</blockquote>
<p>Oracle Support identified this behaviour as Bug 6952915, for which there are patches for Linux x86, x86_64 and Solaris Sparc64.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2009/10/28/oracle-clusterware-asm-11-1-0-7-asm-instance-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patch Set Update (PSU) October 2009 released</title>
		<link>http://www.ora-solutions.net/web/2009/10/21/patch-set-update-psu-october-2009-released/</link>
		<comments>http://www.ora-solutions.net/web/2009/10/21/patch-set-update-psu-october-2009-released/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:15:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=773</guid>
		<description><![CDATA[Oracle has released the October 2009 Patch Set Update (PSU) which contains several interesting news: first PSU, which is available for Grid Control 10.2.0.5 seperate PSU Patches for Clusterware (CRS) Patch Set Updates are now released for ALL non-Windows platform whereas previous PSUs were released for special platforms (e.g. Linux Itanium) on request only. More [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle has released the October 2009 Patch Set Update (PSU) which contains several interesting news:</p>
<ul>
<li>first PSU, which is available for Grid Control 10.2.0.5</li>
<li>seperate PSU Patches for Clusterware (CRS)</li>
<li>Patch Set Updates are now released for ALL non-Windows platform whereas previous PSUs were released for special platforms (e.g. Linux Itanium) on request only.</li>
</ul>
<p>More info can be found in Metalink Note 854428.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2009/10/21/patch-set-update-psu-october-2009-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High CPU Utilization &#8211; waits on cursor: pin S</title>
		<link>http://www.ora-solutions.net/web/2009/08/11/high-cpu-utilization-waits-on-cursor-pin-s/</link>
		<comments>http://www.ora-solutions.net/web/2009/08/11/high-cpu-utilization-waits-on-cursor-pin-s/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 05:42:14 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[10g]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=736</guid>
		<description><![CDATA[I have recently encountered a problem at a customer site, where the database instances resource utilization was so high that the application did not work anymore. Version was 10.2.0.4 on Linux with Oracle Recommended Generic Patches installed. Unfortunately, the customer decided to bounce the instance, so that there is no possibility for intensive diagnosis. However, [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently encountered a problem at a customer site, where the database instances resource utilization was so high that the application did not work anymore. Version was 10.2.0.4 on Linux with Oracle Recommended Generic Patches installed.</p>
<p>Unfortunately, the customer decided to bounce the instance, so that there is no possibility for intensive diagnosis. However, ASH report shows that a dozen sessions either waited on Wait event &#8220;cursor: pin S&#8221; or were active (ON CPU) without any SQL_ID. An AWR Report  showed:</p>
<blockquote><pre>Top 5 Timed Events                                         Avg %Total
~~~~~~~~~~~~~~~~~~                                        wait   Call
Event                                 Waits    Time (s)   (ms)   Time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
cursor: pin S                   140,036,615      24,833      0 ######      Other
CPU time                                             19          72.9
log file sync                         8,767           8      1   30.2     Commit
log file parallel write               9,039           8      1   29.9 System I/O
control file parallel write           1,269           5      4   20.2 System I/O</pre>
</blockquote>
<p>Oracle Support confirmed that this is <strong>Bug 6904068 High CPU usage when there are &#8220;cursor: pin S&#8221; waits.</strong> We have filed a backport request for it, as there is no patch for our platform available yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2009/08/11/high-cpu-utilization-waits-on-cursor-pin-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle introduces Patch Set Updates (PSU) for 10.2.0.4 Database</title>
		<link>http://www.ora-solutions.net/web/2009/07/16/oracle-introduces-patch-set-updates-psu-for-10204-database/</link>
		<comments>http://www.ora-solutions.net/web/2009/07/16/oracle-introduces-patch-set-updates-psu-for-10204-database/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 12:58:39 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[10g]]></category>
		<category><![CDATA[MetaLink]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.ora-solutions.net/web/?p=713</guid>
		<description><![CDATA[On July 14th Oracle announced on MetaLink the release of a new patching strategy for the Oracle Database. The new Patch Set Updates (PSU) will contain cumulative patches, which contain recommended bugfixes. They will be provided on a the same quarterly basis as the Critical Patch Update (CPU), therefore release months will be January, April, [...]]]></description>
			<content:encoded><![CDATA[<p>On July 14th Oracle announced on MetaLink the release of a new patching strategy for the Oracle Database.</p>
<p>The new <strong>Patch Set Updates (PSU)</strong> will contain cumulative patches, which contain recommended bugfixes. They will be provided on a the same <strong>quarterly basis </strong>as the Critical Patch Update (CPU), therefore release months will be January, April, July and October. The Patch Set Update will be described in the release version. E.g. <strong>10.2.0.4.1</strong> will be the first Patch Set Update (PSU), 10.2.0.4.2 the second PSU etc.</p>
<p>As described in the release information, the 10.2.0.4.1 PSU Patch (Patch 8576156) contains all the recommended patch bundles up to July 2009 (Generic, CRS, RAC, Services, DataGuard) as well as the Critical Patch Update July 2009. Moreover 5 additional critical bugfixes are included. OPatch version 10.2.0.4.7 is required for installation of PSU 10.2.0.4.1 and the PSU is rolling installable on RAC environments without downtime.</p>
<p>Later PSU patches can be installed on either the base release or on top of any previous PSU. For example, PSU 10.2.0.4.3 can be installed on top of Base 10.2.0.4.0, PSU 10.2.0.4.1, PSU 10.2.4.0.2.</p>
<p>As already mentioned, the customer has the option to install security patches only by installing the quarterly Critical Patch Update or to install security plus non-security bugfixes by installint the Patch Set Update (PSU). As the PSU 10.2.0.4.1 already contains Critical Patch Update July 2009, the documentation states that future security patches are recommended to be installed not by CPU Patches but through PSU Patches.</p>
<p>Further information can be found in these MetaLink Notes:</p>
<p>854428.1 &#8211; Intro to Patch Set Updates (PSU)<br />
850471.1 &#8211; Oracle Announces First Patch Set Update For Oracle Database Release 10.2<br />
8576156.8 &#8211; Bug 8576156  10.2.0.4.1 Patch Set Update (PSU)<br />
854473.1 &#8211; Known Issues with this Patch Set Update 10.2.0.4.1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ora-solutions.net/web/2009/07/16/oracle-introduces-patch-set-updates-psu-for-10204-database/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

