<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to find the top SQL statements that have caused most block buffer reads?</title>
	<atom:link href="http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/</link>
	<description>Oracle Question and Answer</description>
	<lastBuildDate>Sat, 07 Aug 2010 04:48:56 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kirtandesai</title>
		<link>http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/comment-page-1/#comment-30</link>
		<dc:creator>kirtandesai</dc:creator>
		<pubDate>Tue, 17 Jan 2006 19:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/#comment-30</guid>
		<description>yep
whatever fits your requirements!!!!!</description>
		<content:encoded><![CDATA[<p>yep<br />
whatever fits your requirements!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nlitchfield</title>
		<link>http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/comment-page-1/#comment-27</link>
		<dc:creator>nlitchfield</dc:creator>
		<pubDate>Tue, 17 Jan 2006 18:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/01/16/how-to-find-the-top-sql-statements-that-have-caused-most-block-buffer-reads/#comment-27</guid>
		<description>How about this for a top 10.
 
&lt;pre&gt;
select sql_text,buffer_gets
from(
Select buffer_gets, sql_text, rownum rn
from v$sqlarea
where buffer_gets &gt; 10000
order by buffer_gets desc)
where rn &lt; 11
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>How about this for a top 10.</p>
<pre>
select sql_text,buffer_gets
from(
Select buffer_gets, sql_text, rownum rn
from v$sqlarea
where buffer_gets > 10000
order by buffer_gets desc)
where rn < 11
</pre>
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
