<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Pure SQL version of ostakprof(from Tanel Poder)</title>
	<atom:link href="http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/feed/" rel="self" type="application/rss+xml" />
	<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/</link>
	<description>We are natural born scientists</description>
	<lastBuildDate>Fri, 17 Dec 2010 18:43:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Dion Cho</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-300</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Wed, 24 Jun 2009 03:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-300</guid>
		<description><![CDATA[@Tarel.

It&#039;s fixed. It was(and is always) the problem of &lt; and &gt; character.]]></description>
		<content:encoded><![CDATA[<p>@Tarel.</p>
<p>It&#8217;s fixed. It was(and is always) the problem of &lt; and &gt; character.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taral Desai</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-299</link>
		<dc:creator><![CDATA[Taral Desai]]></dc:creator>
		<pubDate>Wed, 24 Jun 2009 03:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-299</guid>
		<description><![CDATA[Hi Dion,

I think this query is not working
select * from (
	select fname, count(*)
	from callstack_temp
	group by fname
	order by 2 desc
) where rownum &#039;),&#039;,&#039;) stack
	from (
		select
			seq,
			fname,
			row_number() over (partition by seq order by idx desc) rn,
			count(*) over (partition by seq) cnt
		from callstack_temp
	)
	where level = cnt
	start with rn = 1
	connect by prior seq = seq and prior rn = rn-1
)
group by stack
order by 1 desc
;]]></description>
		<content:encoded><![CDATA[<p>Hi Dion,</p>
<p>I think this query is not working<br />
select * from (<br />
	select fname, count(*)<br />
	from callstack_temp<br />
	group by fname<br />
	order by 2 desc<br />
) where rownum &#8216;),&#8217;,') stack<br />
	from (<br />
		select<br />
			seq,<br />
			fname,<br />
			row_number() over (partition by seq order by idx desc) rn,<br />
			count(*) over (partition by seq) cnt<br />
		from callstack_temp<br />
	)<br />
	where level = cnt<br />
	start with rn = 1<br />
	connect by prior seq = seq and prior rn = rn-1<br />
)<br />
group by stack<br />
order by 1 desc<br />
;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Cho</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-298</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 23:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-298</guid>
		<description><![CDATA[@Coskan.

It&#039;s pipelined table function to retrieve trace file line by line. 

http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/]]></description>
		<content:encoded><![CDATA[<p>@Coskan.</p>
<p>It&#8217;s pipelined table function to retrieve trace file line by line. </p>
<p><a href="http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/" rel="nofollow">http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coskan</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-297</link>
		<dc:creator><![CDATA[coskan]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 16:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-297</guid>
		<description><![CDATA[Hi Dion,

Can you please put the get_trace_file1  function definition. Do you just get the tracefile name with that function ?]]></description>
		<content:encoded><![CDATA[<p>Hi Dion,</p>
<p>Can you please put the get_trace_file1  function definition. Do you just get the tracefile name with that function ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Cho</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-296</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 15:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-296</guid>
		<description><![CDATA[@Taral

Visit here.
http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/]]></description>
		<content:encoded><![CDATA[<p>@Taral</p>
<p>Visit here.<br />
<a href="http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/" rel="nofollow">http://dioncho.wordpress.com/2009/03/19/another-way-to-use-trace-file/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taral Desai</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-295</link>
		<dc:creator><![CDATA[Taral Desai]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 15:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-295</guid>
		<description><![CDATA[Hi Dion,

What is ukja.get_trace_file1 ?]]></description>
		<content:encoded><![CDATA[<p>Hi Dion,</p>
<p>What is ukja.get_trace_file1 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogroll Report 12/06/09 &#8211; 19/06/09 &#171; Coskan&#8217;s Approach to Oracle</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-293</link>
		<dc:creator><![CDATA[Blogroll Report 12/06/09 &#8211; 19/06/09 &#171; Coskan&#8217;s Approach to Oracle]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 11:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-293</guid>
		<description><![CDATA[[...] Dion Cho - Pure SQL version of ostakprof(from Tanel Poder) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Dion Cho - Pure SQL version of ostakprof(from Tanel Poder) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taral Desai</title>
		<link>http://dioncho.wordpress.com/2009/06/18/pure-sql-version-of-ostakproffrom-tanel-poder/#comment-286</link>
		<dc:creator><![CDATA[Taral Desai]]></dc:creator>
		<pubDate>Thu, 18 Jun 2009 14:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=750#comment-286</guid>
		<description><![CDATA[Hi Dion,

Very interesting way and also we are only depends on oracle.]]></description>
		<content:encoded><![CDATA[<p>Hi Dion,</p>
<p>Very interesting way and also we are only depends on oracle.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
