<?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 Kerry Osborne's Oracle Blog</title>
	<atom:link href="http://kerryosborne.oracle-guy.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kerryosborne.oracle-guy.com</link>
	<description>Just another Oracle blog</description>
	<lastBuildDate>Sat, 15 Jun 2013 18:14:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Creating Test Scripts With Bind Variables by Bind variable peeking: Retrieve peeked and passed values per execution in oracle 11.2 &#124; bdt&#039;s oracle blog</title>
		<link>http://kerryosborne.oracle-guy.com/2009/07/creating-test-scripts-with-bind-variables/#comment-291221</link>
		<dc:creator>Bind variable peeking: Retrieve peeked and passed values per execution in oracle 11.2 &#124; bdt&#039;s oracle blog</dc:creator>
		<pubDate>Sat, 15 Jun 2013 18:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=1607#comment-291221</guid>
		<description><![CDATA[[...] Osborne helped us to retrieve the peeked values from v$sql_plan view into this blog post, but what about the passed values ?  For those ones, Tanel Poder helped us to retrieve the passed [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Osborne helped us to retrieve the peeked values from v$sql_plan view into this blog post, but what about the passed values ?  For those ones, Tanel Poder helped us to retrieve the passed [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hidden SQL &#8211; why can&#8217;t I find my SQL Text? by osborne</title>
		<link>http://kerryosborne.oracle-guy.com/2009/04/hidden-sql-why-cant-i-find-my-sql-text/#comment-290228</link>
		<dc:creator>osborne</dc:creator>
		<pubDate>Thu, 13 Jun 2013 15:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=1161#comment-290228</guid>
		<description><![CDATA[Hi Jey,

I’d love to see a SQL statement who’s text doesn’t change but who’s SQL_ID does. Please send me some details.

Kerry]]></description>
		<content:encoded><![CDATA[<p>Hi Jey,</p>
<p>I’d love to see a SQL statement who’s text doesn’t change but who’s SQL_ID does. Please send me some details.</p>
<p>Kerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hidden SQL &#8211; why can&#8217;t I find my SQL Text? by Jey</title>
		<link>http://kerryosborne.oracle-guy.com/2009/04/hidden-sql-why-cant-i-find-my-sql-text/#comment-290045</link>
		<dc:creator>Jey</dc:creator>
		<pubDate>Thu, 13 Jun 2013 07:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=1161#comment-290045</guid>
		<description><![CDATA[Actually my sql statement is using multiple sql_id in 11g(11.2.0.3.0). It is causing big performance issue in my database. Can help me why it is taking multiple sql_id for single statement and how to fix the issue. we didn’t any changes in sql query.

It is Siebel application database.]]></description>
		<content:encoded><![CDATA[<p>Actually my sql statement is using multiple sql_id in 11g(11.2.0.3.0). It is causing big performance issue in my database. Can help me why it is taking multiple sql_id for single statement and how to fix the issue. we didn’t any changes in sql query.</p>
<p>It is Siebel application database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Gone Bad &#8211; But Plan Not Changed? by Leonardo</title>
		<link>http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/#comment-289147</link>
		<dc:creator>Leonardo</dc:creator>
		<pubDate>Tue, 11 Jun 2013 13:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=4275#comment-289147</guid>
		<description><![CDATA[Just....THANKS a LOT!!!!]]></description>
		<content:encoded><![CDATA[<p>Just&#8230;.THANKS a LOT!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Isn&#8217;t Oracle Using My Outline / Profile / Baseline? by max</title>
		<link>http://kerryosborne.oracle-guy.com/2009/07/why-isnt-oracle-using-my-outline-profile-baseline/#comment-288615</link>
		<dc:creator>max</dc:creator>
		<pubDate>Mon, 10 Jun 2013 12:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=1668#comment-288615</guid>
		<description><![CDATA[Thanks Kerry, i understand you do not have access to 10.2.0.1  But here is the one that Jonathan Lewis helped me with....This is for other people who might need it, as unfortunately quite a few ppl still on the old version....

select
     extractvalue(value(t),&#039;.&#039;) hint
from
     table(
          select
               xmlsequence(
                    extract(xmltype(other_xml),&#039;/other_xml/outline_data/hint&#039;)
               )
          from
               v$sql_plan
          where
               sql_id = &#039;&amp;m_sql_id&#039;
          and     child_number = &amp;m_child_no
          and     other_xml is not null
     )     t
/]]></description>
		<content:encoded><![CDATA[<p>Thanks Kerry, i understand you do not have access to 10.2.0.1  But here is the one that Jonathan Lewis helped me with&#8230;.This is for other people who might need it, as unfortunately quite a few ppl still on the old version&#8230;.</p>
<p>select<br />
     extractvalue(value(t),&#8217;.') hint<br />
from<br />
     table(<br />
          select<br />
               xmlsequence(<br />
                    extract(xmltype(other_xml),&#8217;/other_xml/outline_data/hint&#8217;)<br />
               )<br />
          from<br />
               v$sql_plan<br />
          where<br />
               sql_id = &#8216;&amp;m_sql_id&#8217;<br />
          and     child_number = &amp;m_child_no<br />
          and     other_xml is not null<br />
     )     t<br />
/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Gone Bad &#8211; But Plan Not Changed? by Has my Plan changed or not? &#124; Oracle SQL Tuning Tools and Tips</title>
		<link>http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/#comment-288044</link>
		<dc:creator>Has my Plan changed or not? &#124; Oracle SQL Tuning Tools and Tips</dc:creator>
		<pubDate>Sun, 09 Jun 2013 10:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=4275#comment-288044</guid>
		<description><![CDATA[[...] have learned from Kerry Osborne&#8217;s recent post on SQL Gone Bad – But Plan Not Changed?, and a prior post from Randolf Geist on PLAN_HASH_VALUE &#8211; How equal (and stable?) are your [...]]]></description>
		<content:encoded><![CDATA[<p>[...] have learned from Kerry Osborne&#8217;s recent post on SQL Gone Bad – But Plan Not Changed?, and a prior post from Randolf Geist on PLAN_HASH_VALUE &#8211; How equal (and stable?) are your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Gone Bad &#8211; But Plan Not Changed? by osborne</title>
		<link>http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/#comment-287079</link>
		<dc:creator>osborne</dc:creator>
		<pubDate>Fri, 07 Jun 2013 20:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=4275#comment-287079</guid>
		<description><![CDATA[Hi Jonathan,

  That&#039;s an interesting case. Just to clarify, when you say the plan had changed you mean that the plan steps were operating on different objects. And so in reality, the plan had changed even though it wasn&#039;t reflected in the plan text, and thus the plan_hash_value didn&#039;t change. Randolf&#039;s post points out a bunch of things that are not used in calculating the plan_hash_value and the fact that it only looks at the texts of the plan steps (and knows nothing about the underlying objects - so synonyms pointing to different objects or multiple objects with the same name could all trip it up). I personally believe that the calculation of the plan_hash_value should probably be modified to include more information (such as the predicates and the object_id&#039;s). Thanks for the link to the post by the way. 

Kerry]]></description>
		<content:encoded><![CDATA[<p>Hi Jonathan,</p>
<p>  That&#8217;s an interesting case. Just to clarify, when you say the plan had changed you mean that the plan steps were operating on different objects. And so in reality, the plan had changed even though it wasn&#8217;t reflected in the plan text, and thus the plan_hash_value didn&#8217;t change. Randolf&#8217;s post points out a bunch of things that are not used in calculating the plan_hash_value and the fact that it only looks at the texts of the plan steps (and knows nothing about the underlying objects &#8211; so synonyms pointing to different objects or multiple objects with the same name could all trip it up). I personally believe that the calculation of the plan_hash_value should probably be modified to include more information (such as the predicates and the object_id&#8217;s). Thanks for the link to the post by the way. </p>
<p>Kerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Gone Bad &#8211; But Plan Not Changed? by Jonathan Lewis</title>
		<link>http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/#comment-287063</link>
		<dc:creator>Jonathan Lewis</dc:creator>
		<pubDate>Fri, 07 Jun 2013 19:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=4275#comment-287063</guid>
		<description><![CDATA[Mohamed,

A big difference in the oracle-l example was that the plan HAD changed, even though the plan_hash_value hadn&#039;t changed and a cursory inspection of the tkprof output suggested that the plan itself hadn&#039;t changed. I&#039;ve now written up a blog article about it, with a simplified model of the demonstrating the issue: http://jonathanlewis.wordpress.com/2013/06/07/same-plan/

Regards
Jonathan Lewis]]></description>
		<content:encoded><![CDATA[<p>Mohamed,</p>
<p>A big difference in the oracle-l example was that the plan HAD changed, even though the plan_hash_value hadn&#8217;t changed and a cursory inspection of the tkprof output suggested that the plan itself hadn&#8217;t changed. I&#8217;ve now written up a blog article about it, with a simplified model of the demonstrating the issue: <a href="http://jonathanlewis.wordpress.com/2013/06/07/same-plan/" rel="nofollow">http://jonathanlewis.wordpress.com/2013/06/07/same-plan/</a></p>
<p>Regards<br />
Jonathan Lewis</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Gone Bad &#8211; But Plan Not Changed? by Same SQL_ID, same execution plan (SQL_PLAN_HASH_VALUE), greatly different elapsed time &#8211; a simple way to troubleshoot this problem with ASH &#124; Iordan Iotzov&#039;s DBA blog</title>
		<link>http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/#comment-287033</link>
		<dc:creator>Same SQL_ID, same execution plan (SQL_PLAN_HASH_VALUE), greatly different elapsed time &#8211; a simple way to troubleshoot this problem with ASH &#124; Iordan Iotzov&#039;s DBA blog</dc:creator>
		<pubDate>Fri, 07 Jun 2013 17:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=4275#comment-287033</guid>
		<description><![CDATA[[...] note by Kerry Osborne &#8211; http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/. Identical  PLAN_HASH_VALUEs are not a  guarantee that the underlying execution plans are [...]]]></description>
		<content:encoded><![CDATA[<p>[...] note by Kerry Osborne &#8211; <a href="http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/" rel="nofollow">http://kerryosborne.oracle-guy.com/2013/06/sql-gone-bad-but-plan-not-changed/</a>. Identical  PLAN_HASH_VALUEs are not a  guarantee that the underlying execution plans are [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Exadata V2 &#8211; Flash Cache by Krishna</title>
		<link>http://kerryosborne.oracle-guy.com/2010/05/exadata-take-2-flash-cache/#comment-287001</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Fri, 07 Jun 2013 15:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://kerryosborne.oracle-guy.com/?p=2411#comment-287001</guid>
		<description><![CDATA[Thank you very much for your valuable reply Kerry.]]></description>
		<content:encoded><![CDATA[<p>Thank you very much for your valuable reply Kerry.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
