<?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: How long is my query being executed?</title>
	<atom:link href="http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/feed/" rel="self" type="application/rss+xml" />
	<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/</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/05/02/how-long-is-my-query-being-executed/#comment-431</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Fri, 11 Sep 2009 01:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-431</guid>
		<description><![CDATA[More research clearly showed that even index creation on text should appear in the V$SESSION_LONGOPS view while it is reading data with full table scan.

One thing you should investigate is the size of the table. For full table scan, Oracle registeres it to the V$SESSION_LONGOPS view only when the table size over 10,000 block.]]></description>
		<content:encoded><![CDATA[<p>More research clearly showed that even index creation on text should appear in the V$SESSION_LONGOPS view while it is reading data with full table scan.</p>
<p>One thing you should investigate is the size of the table. For full table scan, Oracle registeres it to the V$SESSION_LONGOPS view only when the table size over 10,000 block.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-428</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Thu, 10 Sep 2009 08:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-428</guid>
		<description><![CDATA[I use the ORACLE TEXT feature in order to index and search pdf documents. The CREATE INDEX statement is:
&#039;CREATE INDEX text_index ON pdfs(pdf) INDEXTYPE IS CTXSYS.CONTEXT&#039; - but there doesn&#039;t appear any entry in V$SESSION_LONGOPS.]]></description>
		<content:encoded><![CDATA[<p>I use the ORACLE TEXT feature in order to index and search pdf documents. The CREATE INDEX statement is:<br />
&#8216;CREATE INDEX text_index ON pdfs(pdf) INDEXTYPE IS CTXSYS.CONTEXT&#8217; &#8211; but there doesn&#8217;t appear any entry in V$SESSION_LONGOPS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Cho</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-427</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Thu, 10 Sep 2009 08:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-427</guid>
		<description><![CDATA[Tim.

CREATE INDEX would do table full scan or index fast full scan, which would be reported via V$SESSION_LONGOPS view. Yes, index creation itself is not appear but all you get would be table full scan/index fast full scan operation.

But I have no idea why your long-running index creation session does not appear on that view. Do you have any unusual things with your job?

Regards.]]></description>
		<content:encoded><![CDATA[<p>Tim.</p>
<p>CREATE INDEX would do table full scan or index fast full scan, which would be reported via V$SESSION_LONGOPS view. Yes, index creation itself is not appear but all you get would be table full scan/index fast full scan operation.</p>
<p>But I have no idea why your long-running index creation session does not appear on that view. Do you have any unusual things with your job?</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-426</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Thu, 10 Sep 2009 08:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-426</guid>
		<description><![CDATA[Hello,

I&#039;ve got a CREATE INDEX statement that takes several minutes, but the task isn&#039;t reported by v$session_longops. Is is possible to make ORACLE display a db operation in that view?]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;ve got a CREATE INDEX statement that takes several minutes, but the task isn&#8217;t reported by v$session_longops. Is is possible to make ORACLE display a db operation in that view?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Cho</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-424</link>
		<dc:creator><![CDATA[Dion Cho]]></dc:creator>
		<pubDate>Thu, 03 Sep 2009 01:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-424</guid>
		<description><![CDATA[ABCD. :)

V$SESSION_LONGOPS view has some restrictions as explained here.
http://www.gplivna.eu/papers/v$session_longops.htm

But still, it&#039;s a nice try to examine V$SESSION_LONGOPS view.]]></description>
		<content:encoded><![CDATA[<p>ABCD. :)</p>
<p>V$SESSION_LONGOPS view has some restrictions as explained here.<br />
<a href="http://www.gplivna.eu/papers/v$session_longops.htm" rel="nofollow">http://www.gplivna.eu/papers/v$session_longops.htm</a></p>
<p>But still, it&#8217;s a nice try to examine V$SESSION_LONGOPS view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abcd</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-423</link>
		<dc:creator><![CDATA[abcd]]></dc:creator>
		<pubDate>Wed, 02 Sep 2009 20:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-423</guid>
		<description><![CDATA[Would&#039;nt the v$session_longops serve the purpose to track elapsed time of long running queries?]]></description>
		<content:encoded><![CDATA[<p>Would&#8217;nt the v$session_longops serve the purpose to track elapsed time of long running queries?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yas</title>
		<link>http://dioncho.wordpress.com/2009/05/02/how-long-is-my-query-being-executed/#comment-203</link>
		<dc:creator><![CDATA[Yas]]></dc:creator>
		<pubDate>Mon, 04 May 2009 13:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://dioncho.wordpress.com/?p=617#comment-203</guid>
		<description><![CDATA[Dion, v$transaction.start_time may not show when the last dml statement started, it shows the start time of the transaction, the transaction may have been started with a different dml.]]></description>
		<content:encoded><![CDATA[<p>Dion, v$transaction.start_time may not show when the last dml statement started, it shows the start time of the transaction, the transaction may have been started with a different dml.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
