<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Oracle DBA - Tips and Techniques</title>
	<atom:link href="http://gavinsoorma.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gavinsoorma.com</link>
	<description>Knowledge Is Power - Share IT ....</description>
	<lastBuildDate>Mon, 14 May 2012 06:57:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Customizing GoldenGate processing using SQLEXEC and GETVAL by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2011/04/customizing-goldengate-processing-using-sqlexec-and-getval/comment-page-1/#comment-5872</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Mon, 14 May 2012 06:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3136#comment-5872</guid>
		<description>In the first issue check the structure of the table. Have you defined a primary key for the table. Have you used the ADD  TRANDATA command to enable suplemental logging.

For the second issue, the GoldenGate schema owner needs to have execute privs on the provedure owned by the application schema owner. If no public synonym exists then fully qualify the procedure name with the schema name as well.</description>
		<content:encoded><![CDATA[<p>In the first issue check the structure of the table. Have you defined a primary key for the table. Have you used the ADD  TRANDATA command to enable suplemental logging.</p>
<p>For the second issue, the GoldenGate schema owner needs to have execute privs on the provedure owned by the application schema owner. If no public synonym exists then fully qualify the procedure name with the schema name as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Customizing GoldenGate processing using SQLEXEC and GETVAL by AG</title>
		<link>http://gavinsoorma.com/2011/04/customizing-goldengate-processing-using-sqlexec-and-getval/comment-page-1/#comment-5850</link>
		<dc:creator>AG</dc:creator>
		<pubDate>Fri, 11 May 2012 22:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3136#comment-5850</guid>
		<description>Hi, I am trying the case#2, calling a procedure but failing with the following errors:

create or replace procedure scott.get_script_id
(script_id_p OUT number )
is
begin
select scott.script_id_s.nextval into script_id_p from dual;
end;
/

*******Report File***********

MAP resolved (entry mark.SCRIPT_NEW):
  MAP mark.SCRIPT_NEW, TARGET  scott.script_new, SQLEXEC (ID seqnum,QUERY &quot;select scott.script_id_s.nextval script_id_p from dual&quot;, PARAMS(script_id_p = script_id)), COLMAP (USEDEFAULTS, 
script_id = @GETVAL (seqnum.script_id_p));
Using the following default columns with matching names:
  D_SCRIPT_ID=D_SCRIPT_ID, SCRIPT_ID=SCRIPT_ID, SCRIPT_NAME=SCRIPT_NAME

Using the following key columns for target table scott.SCRIPT_NEW: SCRIPT_ID.

2012-05-11 12:50:05  WARNING OGG-00869  OCI Error ORA-01400: cannot insert NULL into (&quot;SCOTT&quot;.&quot;SCRIPT_NEW&quot;.&quot;SCRIPT_NAME&quot;) (status = 1400), SQL .

2012-05-11 12:50:05  WARNING OGG-01004  Aborted grouped transaction on &#039;SCOTT.SCRIPT_NEW&#039;, Database error 1400 (ORA-01400: cannot insert NULL into (&quot;SCOTT&quot;.&quot;SCRIPT_NEW&quot;.&quot;SCRIPT_NAME&quot;)).

2012-05-11 12:50:05  WARNING OGG-01003  Repositioning to rba 1747 in seqno 0.

*********** 
And :

create or replace procedure get_channel_id
(d_script_id_p IN number, channel_id_p OUT number, script_id_p OUT number )
is
begin
select scott.channel_id_s.nextval into channel_id_p from dual;
select script_id into script_id_p from script_new where d_script_id= d_script_id_p;
end;
/

*******Report File***********
MAP resolved (entry DASH.CHANNEL_NEW):
  MAP MARK.CHANNEL_NEW, TARGET SCOTT.channel_new, SQLEXEC (spname get_channel_id, PARAMS (d_script_id_p = d_script_id)), COLMAP (USEDEFAULTS, channel_id = @getval (get_channel_id.channel
_id_p), script_id = @getval (get_channel_id.script_id_p));
..
...
2012-05-11 11:52:45  ERROR   OGG-00251  Stored procedure/function get_channel_id does not exist (ORA-04043: object get_channel_id does not exist).


Please guide me if I am missing anything in calling these procedures.

Thanks in Advance,
AG</description>
		<content:encoded><![CDATA[<p>Hi, I am trying the case#2, calling a procedure but failing with the following errors:</p>
<p>create or replace procedure scott.get_script_id<br />
(script_id_p OUT number )<br />
is<br />
begin<br />
select scott.script_id_s.nextval into script_id_p from dual;<br />
end;<br />
/</p>
<p>*******Report File***********</p>
<p>MAP resolved (entry mark.SCRIPT_NEW):<br />
  MAP mark.SCRIPT_NEW, TARGET  scott.script_new, SQLEXEC (ID seqnum,QUERY &#8220;select scott.script_id_s.nextval script_id_p from dual&#8221;, PARAMS(script_id_p = script_id)), COLMAP (USEDEFAULTS,<br />
script_id = @GETVAL (seqnum.script_id_p));<br />
Using the following default columns with matching names:<br />
  D_SCRIPT_ID=D_SCRIPT_ID, SCRIPT_ID=SCRIPT_ID, SCRIPT_NAME=SCRIPT_NAME</p>
<p>Using the following key columns for target table scott.SCRIPT_NEW: SCRIPT_ID.</p>
<p>2012-05-11 12:50:05  WARNING OGG-00869  OCI Error ORA-01400: cannot insert NULL into (&#8220;SCOTT&#8221;.&#8221;SCRIPT_NEW&#8221;.&#8221;SCRIPT_NAME&#8221;) (status = 1400), SQL .</p>
<p>2012-05-11 12:50:05  WARNING OGG-01004  Aborted grouped transaction on &#8216;SCOTT.SCRIPT_NEW&#8217;, Database error 1400 (ORA-01400: cannot insert NULL into (&#8220;SCOTT&#8221;.&#8221;SCRIPT_NEW&#8221;.&#8221;SCRIPT_NAME&#8221;)).</p>
<p>2012-05-11 12:50:05  WARNING OGG-01003  Repositioning to rba 1747 in seqno 0.</p>
<p>***********<br />
And :</p>
<p>create or replace procedure get_channel_id<br />
(d_script_id_p IN number, channel_id_p OUT number, script_id_p OUT number )<br />
is<br />
begin<br />
select scott.channel_id_s.nextval into channel_id_p from dual;<br />
select script_id into script_id_p from script_new where d_script_id= d_script_id_p;<br />
end;<br />
/</p>
<p>*******Report File***********<br />
MAP resolved (entry DASH.CHANNEL_NEW):<br />
  MAP MARK.CHANNEL_NEW, TARGET SCOTT.channel_new, SQLEXEC (spname get_channel_id, PARAMS (d_script_id_p = d_script_id)), COLMAP (USEDEFAULTS, channel_id = @getval (get_channel_id.channel<br />
_id_p), script_id = @getval (get_channel_id.script_id_p));<br />
..<br />
&#8230;<br />
2012-05-11 11:52:45  ERROR   OGG-00251  Stored procedure/function get_channel_id does not exist (ORA-04043: object get_channel_id does not exist).</p>
<p>Please guide me if I am missing anything in calling these procedures.</p>
<p>Thanks in Advance,<br />
AG</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performing a database clone using a Data Guard physical standby database by Shiraz</title>
		<link>http://gavinsoorma.com/2012/04/performing-a-database-clone-using-a-data-guard-physical-standby-database/comment-page-1/#comment-5525</link>
		<dc:creator>Shiraz</dc:creator>
		<pubDate>Thu, 19 Apr 2012 12:08:25 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3445#comment-5525</guid>
		<description>Gavin, you&#039;ve done it again! As a routine I check your blog every morning. I&#039;m HOOKED!

Thanks for the info!</description>
		<content:encoded><![CDATA[<p>Gavin, you&#8217;ve done it again! As a routine I check your blog every morning. I&#8217;m HOOKED!</p>
<p>Thanks for the info!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performing a database clone using a Data Guard physical standby database by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2012/04/performing-a-database-clone-using-a-data-guard-physical-standby-database/comment-page-1/#comment-5518</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Thu, 19 Apr 2012 05:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3445#comment-5518</guid>
		<description>We don&#039;t touch primary - only issue alter database begin backup - all copy is done from standby site</description>
		<content:encoded><![CDATA[<p>We don&#8217;t touch primary &#8211; only issue alter database begin backup &#8211; all copy is done from standby site</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performing a database clone using a Data Guard physical standby database by anuj</title>
		<link>http://gavinsoorma.com/2012/04/performing-a-database-clone-using-a-data-guard-physical-standby-database/comment-page-1/#comment-5517</link>
		<dc:creator>anuj</dc:creator>
		<pubDate>Thu, 19 Apr 2012 05:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3445#comment-5517</guid>
		<description>hi
is primary shutdown? before scp !!!!!!!!!!!!
==========================================================
ON STANDBY

scp all the data files to the target server

[oracle@kens-orasql-002 HDESK11G]$ scp -rp *.dbf oracle@kens-orasql-001-dev:/u01/app/oracle/oradata/CLONEDB
========================================


regards 
anuj</description>
		<content:encoded><![CDATA[<p>hi<br />
is primary shutdown? before scp !!!!!!!!!!!!<br />
==========================================================<br />
ON STANDBY</p>
<p>scp all the data files to the target server</p>
<p>[oracle@kens-orasql-002 HDESK11G]$ scp -rp *.dbf oracle@kens-orasql-001-dev:/u01/app/oracle/oradata/CLONEDB<br />
========================================</p>
<p>regards<br />
anuj</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Events causes and resolutions by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2009/07/resolving-common-oracle-wait-events-using-the-wait-interface/comment-page-1/#comment-4246</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Thu, 01 Dec 2011 00:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=765#comment-4246</guid>
		<description>Hi - could you please try and access the document and let me know if you are still having issues - thanks</description>
		<content:encoded><![CDATA[<p>Hi &#8211; could you please try and access the document and let me know if you are still having issues &#8211; thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Events causes and resolutions by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2009/07/resolving-common-oracle-wait-events-using-the-wait-interface/comment-page-1/#comment-4245</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Thu, 01 Dec 2011 00:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=765#comment-4245</guid>
		<description>Hi Manish - could you please try again and let me know if you are still facing any difficulties. Thanks</description>
		<content:encoded><![CDATA[<p>Hi Manish &#8211; could you please try again and let me know if you are still facing any difficulties. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Events causes and resolutions by manish</title>
		<link>http://gavinsoorma.com/2009/07/resolving-common-oracle-wait-events-using-the-wait-interface/comment-page-1/#comment-4221</link>
		<dc:creator>manish</dc:creator>
		<pubDate>Tue, 29 Nov 2011 04:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=765#comment-4221</guid>
		<description>Hi 
I am not able to download the file.
Could you please send the document to my mail id &quot;kmrmanish23@gmail.com&quot;

thanks,
Manish</description>
		<content:encoded><![CDATA[<p>Hi<br />
I am not able to download the file.<br />
Could you please send the document to my mail id &#8220;kmrmanish23@gmail.com&#8221;</p>
<p>thanks,<br />
Manish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Events causes and resolutions by Sreekanth</title>
		<link>http://gavinsoorma.com/2009/07/resolving-common-oracle-wait-events-using-the-wait-interface/comment-page-1/#comment-4081</link>
		<dc:creator>Sreekanth</dc:creator>
		<pubDate>Thu, 17 Nov 2011 21:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=765#comment-4081</guid>
		<description>Hi, i too not able to download the current document and still the document word 2003 is not uploaded. could you please send the document to the sree_k4u@yahoo.co.in if you couldn&#039;t upload the document.</description>
		<content:encoded><![CDATA[<p>Hi, i too not able to download the current document and still the document word 2003 is not uploaded. could you please send the document to the <a href="mailto:sree_k4u@yahoo.co.in">sree_k4u@yahoo.co.in</a> if you couldn&#8217;t upload the document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Events causes and resolutions by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2009/07/resolving-common-oracle-wait-events-using-the-wait-interface/comment-page-1/#comment-4059</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Wed, 16 Nov 2011 03:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=765#comment-4059</guid>
		<description>Hi - I think it is a docx type Word document - I will upload a Word 2003 document today - thanks for pointing it out</description>
		<content:encoded><![CDATA[<p>Hi &#8211; I think it is a docx type Word document &#8211; I will upload a Word 2003 document today &#8211; thanks for pointing it out</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 11g Grid Control Installation &#8211; tips and solutions by daniel</title>
		<link>http://gavinsoorma.com/2010/10/11g-grid-control-installation-tips-and-solutions/comment-page-1/#comment-3344</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Fri, 26 Aug 2011 23:01:54 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2772#comment-3344</guid>
		<description>no need to hack emctl script for 10.2.0.4 listener issues with the 11g agent, there is a patch for it; i&#039;ve applied it and it works as expected.

Patch 9828187: GC 11G: DATABASE  10.2.0.4 LISTENER SHOWS DOWN WHEN IT IS UP

Oracle Management Agent 11g Release 1 (11.1.0.1.0)
Patch for Bug# 9828187
Released: Apr 13, 2011

regards,
daniel</description>
		<content:encoded><![CDATA[<p>no need to hack emctl script for 10.2.0.4 listener issues with the 11g agent, there is a patch for it; i&#8217;ve applied it and it works as expected.</p>
<p>Patch 9828187: GC 11G: DATABASE  10.2.0.4 LISTENER SHOWS DOWN WHEN IT IS UP</p>
<p>Oracle Management Agent 11g Release 1 (11.1.0.1.0)<br />
Patch for Bug# 9828187<br />
Released: Apr 13, 2011</p>
<p>regards,<br />
daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Useful GoldenGate commands &#8211; SHELL, OBEY, HELP, HISTORY,VERSIONS by Gavin Soorma</title>
		<link>http://gavinsoorma.com/2010/07/useful-goldengate-commands-shell-obey-help-historyversions/comment-page-1/#comment-3317</link>
		<dc:creator>Gavin Soorma</dc:creator>
		<pubDate>Fri, 26 Aug 2011 03:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2710#comment-3317</guid>
		<description>Try this - have created a simple shell script - you can build on this 

/export/home/oracle/gg/ggsci &lt; output.txt
info all
EOF</description>
		<content:encoded><![CDATA[<p>Try this &#8211; have created a simple shell script &#8211; you can build on this </p>
<p>/export/home/oracle/gg/ggsci &lt; output.txt<br />
info all<br />
EOF</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Useful GoldenGate commands &#8211; SHELL, OBEY, HELP, HISTORY,VERSIONS by BC</title>
		<link>http://gavinsoorma.com/2010/07/useful-goldengate-commands-shell-obey-help-historyversions/comment-page-1/#comment-3274</link>
		<dc:creator>BC</dc:creator>
		<pubDate>Tue, 23 Aug 2011 13:28:42 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2710#comment-3274</guid>
		<description>But how you output &quot;INFO ALL&quot; to a .txt file?</description>
		<content:encoded><![CDATA[<p>But how you output &#8220;INFO ALL&#8221; to a .txt file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle GoldenGate &#8211; how to connect to a particular database if there are multiple databases on the source or target server by E.Hatt-Swank</title>
		<link>http://gavinsoorma.com/2010/08/oracle-goldengate-how-to-connect-to-a-particular-database-if-there-are-multiple-databases-on-the-source-or-target-server/comment-page-1/#comment-3128</link>
		<dc:creator>E.Hatt-Swank</dc:creator>
		<pubDate>Wed, 10 Aug 2011 12:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2723#comment-3128</guid>
		<description>I just wanted to say thank you so much for your GoldenGate tutorials. I&#039;m working on setting up a GoldenGate environment for the first time, and while the official documentation has lots of detailed information, I have found it to be poorly organized and inconsistent. I&#039;ve been relying heavily on your tutorials for clear step-by-step instructions. And just now, I needed an answer to this very question of multiple databases replicating on the same system: your site was the first place I looked. Thank you!</description>
		<content:encoded><![CDATA[<p>I just wanted to say thank you so much for your GoldenGate tutorials. I&#8217;m working on setting up a GoldenGate environment for the first time, and while the official documentation has lots of detailed information, I have found it to be poorly organized and inconsistent. I&#8217;ve been relying heavily on your tutorials for clear step-by-step instructions. And just now, I needed an answer to this very question of multiple databases replicating on the same system: your site was the first place I looked. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using DBMS_ADVANCED_REWRITE with an HINT to change the execution plan by Vishal Desai</title>
		<link>http://gavinsoorma.com/2011/06/using-dbms_advanced_rewrite-with-an-hint-to-change-the-execution-plan/comment-page-1/#comment-2779</link>
		<dc:creator>Vishal Desai</dc:creator>
		<pubDate>Wed, 29 Jun 2011 14:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=3196#comment-2779</guid>
		<description>Excellent stuff.

When using bind variable it throws error:
ORA-30353: expression not supported for query rewrite

Workaround and limitation:

VDESAI@db &gt; create view myobjects1 as select * from myobjects;

View created.

VDESAI@db &gt;
VDESAI@db &gt; begin
  2  sys.dbms_advanced_rewrite.declare_rewrite_equivalence(
  3  name =&gt; &#039;Use_Myobjects_Index&#039;,
  4  source_stmt =&gt;&#039;select object_name,object_type from myobjects&#039;,
  5  destination_stmt =&gt; &#039;select /*+ INDEX (myobjects1 myobjects_ind) */ object_name ,object_type from myobjects1&#039; ,
  6  validate =&gt; false,
  7  rewrite_mode =&gt; &#039;GENERAL&#039;);
  8  end;
  9  /

PL/SQL procedure successfully completed.

VDESAI@db &gt; var b varchar2(100);
VDESAI@db &gt; exec :b:=&#039;GAVIN&#039;;

PL/SQL procedure successfully completed.

VDESAI@db &gt; explain plan for select object_name,object_type from myobjects where owner=:b;

Explained.

VDESAI@db &gt; select * from table (dbms_xplan.display);

PLAN_TABLE_OUTPUT
---------------------------------------------------------------------------------------------------------------------------------

Plan hash value: 2745750972

---------------------------------------------------------------------------------------------
&#124; Id  &#124; Operation                   &#124; Name          &#124; Rows  &#124; Bytes &#124; Cost (%CPU)&#124; Time     &#124;
---------------------------------------------------------------------------------------------
&#124;   0 &#124; SELECT STATEMENT            &#124;               &#124;   694 &#124; 65236 &#124;    42   (0)&#124; 00:00:01 &#124;
&#124;   1 &#124;  TABLE ACCESS BY INDEX ROWID&#124; MYOBJECTS     &#124;   694 &#124; 65236 &#124;    42   (0)&#124; 00:00:01 &#124;
&#124;*  2 &#124;   INDEX RANGE SCAN          &#124; MYOBJECTS_IND &#124;   278 &#124;       &#124;    40   (0)&#124; 00:00:01 &#124;
---------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):

PLAN_TABLE_OUTPUT
---------------------------------------------------------------------------------------------------------------------------------

---------------------------------------------------

   2 - access(&quot;OWNER&quot;=:B)

Note
-----
   - dynamic sampling used for this statement (level=2)

18 rows selected.


Now it does not recognize that data is skewed and uses same INDEX RANGE SCAN operation for all bind values.</description>
		<content:encoded><![CDATA[<p>Excellent stuff.</p>
<p>When using bind variable it throws error:<br />
ORA-30353: expression not supported for query rewrite</p>
<p>Workaround and limitation:</p>
<p>VDESAI@db &gt; create view myobjects1 as select * from myobjects;</p>
<p>View created.</p>
<p>VDESAI@db &gt;<br />
VDESAI@db &gt; begin<br />
  2  sys.dbms_advanced_rewrite.declare_rewrite_equivalence(<br />
  3  name =&gt; &#8216;Use_Myobjects_Index&#8217;,<br />
  4  source_stmt =&gt;&#8217;select object_name,object_type from myobjects&#8217;,<br />
  5  destination_stmt =&gt; &#8216;select /*+ INDEX (myobjects1 myobjects_ind) */ object_name ,object_type from myobjects1&#8242; ,<br />
  6  validate =&gt; false,<br />
  7  rewrite_mode =&gt; &#8216;GENERAL&#8217;);<br />
  8  end;<br />
  9  /</p>
<p>PL/SQL procedure successfully completed.</p>
<p>VDESAI@db &gt; var b varchar2(100);<br />
VDESAI@db &gt; exec :b:=&#8217;GAVIN&#8217;;</p>
<p>PL/SQL procedure successfully completed.</p>
<p>VDESAI@db &gt; explain plan for select object_name,object_type from myobjects where owner=:b;</p>
<p>Explained.</p>
<p>VDESAI@db &gt; select * from table (dbms_xplan.display);</p>
<p>PLAN_TABLE_OUTPUT<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Plan hash value: 2745750972</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
| Id  | Operation                   | Name          | Rows  | Bytes | Cost (%CPU)| Time     |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
|   0 | SELECT STATEMENT            |               |   694 | 65236 |    42   (0)| 00:00:01 |<br />
|   1 |  TABLE ACCESS BY INDEX ROWID| MYOBJECTS     |   694 | 65236 |    42   (0)| 00:00:01 |<br />
|*  2 |   INDEX RANGE SCAN          | MYOBJECTS_IND |   278 |       |    40   (0)| 00:00:01 |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Predicate Information (identified by operation id):</p>
<p>PLAN_TABLE_OUTPUT<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>   2 &#8211; access(&#8220;OWNER&#8221;=:B)</p>
<p>Note<br />
&#8212;&#8211;<br />
   &#8211; dynamic sampling used for this statement (level=2)</p>
<p>18 rows selected.</p>
<p>Now it does not recognize that data is skewed and uses same INDEX RANGE SCAN operation for all bind values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Purging trace and dump files with 11g ADRCI by Wissem</title>
		<link>http://gavinsoorma.com/2010/09/purging-trace-and-dump-files-with-11g-adrci/comment-page-1/#comment-2719</link>
		<dc:creator>Wissem</dc:creator>
		<pubDate>Thu, 16 Jun 2011 08:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2733#comment-2719</guid>
		<description>Hello Gavin

What about backing up these trace files before purge them? Any ADRCI command can do that?

thank you</description>
		<content:encoded><![CDATA[<p>Hello Gavin</p>
<p>What about backing up these trace files before purge them? Any ADRCI command can do that?</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GoldenGate &#8211; What is supported and what is not &#8230;. by Pradeep Gupta</title>
		<link>http://gavinsoorma.com/2010/11/goldengate-what-is-supported-and-what-is-not/comment-page-1/#comment-2715</link>
		<dc:creator>Pradeep Gupta</dc:creator>
		<pubDate>Wed, 15 Jun 2011 15:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.com/?p=2796#comment-2715</guid>
		<description>Bala, you can enable truncate command replication in report parameter file.

GETTRUNCATES

Also for DDL replication you can set the parameter for ALL or specific Operation type.


DDL  &amp;
      INCLUDE MAPPED &amp;
            OPTYPE alter &amp;
            OBJTYPE &#039;table&#039; &amp;
            OBJNAME &quot;SCOTT.*&quot; &amp;
DDLOPTIONS REPORT
DDLERROR 942 IGNORE RETRYOP MAXRETRIES 5
DDLERROR 2430 IGNORE
DDLERROR 2431 IGNORE

Thanks,</description>
		<content:encoded><![CDATA[<p>Bala, you can enable truncate command replication in report parameter file.</p>
<p>GETTRUNCATES</p>
<p>Also for DDL replication you can set the parameter for ALL or specific Operation type.</p>
<p>DDL  &amp;<br />
      INCLUDE MAPPED &amp;<br />
            OPTYPE alter &amp;<br />
            OBJTYPE &#8216;table&#8217; &amp;<br />
            OBJNAME &#8220;SCOTT.*&#8221; &amp;<br />
DDLOPTIONS REPORT<br />
DDLERROR 942 IGNORE RETRYOP MAXRETRIES 5<br />
DDLERROR 2430 IGNORE<br />
DDLERROR 2431 IGNORE</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Goldengate Tutorial 8 &#8211; Filtering and Mapping data by Pradeep Gupta</title>
		<link>http://gavinsoorma.com/2010/02/oracle-goldengate-tutorial-8-filtering-and-mapping-data/comment-page-1/#comment-2713</link>
		<dc:creator>Pradeep Gupta</dc:creator>
		<pubDate>Wed, 15 Jun 2011 14:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=2025#comment-2713</guid>
		<description>Good work Gavin, I am having 3 years of good exp in GoldenGate. I went thru some of your documents and found very clear and nicely written.

Many thanks for all your blogs, I will surely recommend your site for beginners.

Cheers</description>
		<content:encoded><![CDATA[<p>Good work Gavin, I am having 3 years of good exp in GoldenGate. I went thru some of your documents and found very clear and nicely written.</p>
<p>Many thanks for all your blogs, I will surely recommend your site for beginners.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GoldenGate Tutorial 1 &#8211; Concepts and Architecture by Arindam</title>
		<link>http://gavinsoorma.com/2010/02/goldengate-concepts-and-architecture/comment-page-1/#comment-2670</link>
		<dc:creator>Arindam</dc:creator>
		<pubDate>Fri, 10 Jun 2011 20:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=1953#comment-2670</guid>
		<description>Just exactly what I was looking for... Thanks Gavin.</description>
		<content:encoded><![CDATA[<p>Just exactly what I was looking for&#8230; Thanks Gavin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Script &#8211; Check RMAN Backup Status by shilpa</title>
		<link>http://gavinsoorma.com/2009/07/rman-script-to-check-backups/comment-page-1/#comment-2654</link>
		<dc:creator>shilpa</dc:creator>
		<pubDate>Wed, 08 Jun 2011 05:47:46 +0000</pubDate>
		<guid isPermaLink="false">http://gavinsoorma.wordpress.com/?p=1327#comment-2654</guid>
		<description>This is really a useful script.

Thanks,
Shilpa</description>
		<content:encoded><![CDATA[<p>This is really a useful script.</p>
<p>Thanks,<br />
Shilpa</p>
]]></content:encoded>
	</item>
</channel>
</rss>

