<?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: Brain Teaser: 10046 Extended SQL Trace Shows a FETCH Call with c=306350000, e=299174653, p=0, cr=22298 &#8211; How is that Possible?</title>
	<atom:link href="http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/feed/" rel="self" type="application/rss+xml" />
	<link>http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/</link>
	<description>Miscellaneous Random Oracle Topics: Stop, Think, ... Understand</description>
	<lastBuildDate>Mon, 13 May 2013 14:10:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Log Buffer #270, A Carnival of the Vanities for DBAs</title>
		<link>http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/#comment-5253</link>
		<dc:creator><![CDATA[Log Buffer #270, A Carnival of the Vanities for DBAs]]></dc:creator>
		<pubDate>Wed, 13 Feb 2013 17:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=6302#comment-5253</guid>
		<description><![CDATA[[...] Charles Hooper dishes out another brain teaser which is related to 10046 Extended SQL Trace. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Charles Hooper dishes out another brain teaser which is related to 10046 Extended SQL Trace. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/#comment-4664</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Wed, 02 May 2012 19:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=6302#comment-4664</guid>
		<description><![CDATA[There have been fewer attempts at answering the eight brain teaser questions that were posed directly or indirectly by the OP, despite the seemingly high number of views of the OTN thread.  I thought that I might take an attempt at answering questions number 3 and 5.

#3 In the OTN thread, Jonathan Lewis noticed that with c=306350000 and e=299174653, the c (CPU) value is roughly 1.0239838 times the value of the e (Elapsed) time, which is roughly the same value as 1024/1000 (2^10 / 10^3).  That might imply that the OP’s combination of Oracle Database version and operating system version very likely assumes that there are 1024 milliseconds of CPU time (2^10 ticks) per second, rather than 1000.  But why?

I took a look through the book “Optimizing Oracle Performance” for clues, in part because I thought that I remembered that the reason for the bit shift optimization (using 2^10 rather than 10^3) was mentioned in that book.  While I did not find the quote that I remembered., I found a couple of interesting quotes that lead down the path to a couple other lines of thought:
Page 148:
&lt;blockquote&gt;
“On POSIX-compliant operating systems, the Oracle kernel obtains CPU usage information from a function called getrusage on Linux and many other operating systems, or a similar function called times on HP-UX and a few other systems.”
&lt;/blockquote&gt;

Page 156:
&lt;blockquote&gt;
“The Linux gettimeofday call, for example, converts a value from nanoseconds (10^-9 seconds) to microseconds (10^-6) by performing an integer division of the nanosecond value by 1,000, effectively discarding the final three digits of information.”
&lt;/blockquote&gt;

Page 163:
&lt;blockquote&gt;
“With a 1-cs clock resolution, getrusage may return microsecond data, but those microsecond values will never contain valid detail smaller than 1/100th (0.01) of a second.”
&lt;/blockquote&gt;

Page 164:
&lt;blockquote&gt;
“At every interrupt, the operating system’s process scheduler tallies one full centisecond (10,000 microseconds) of CPU consumption to whatever process is running at that time.”
&lt;/blockquote&gt;

Interesting… the quote from page 164 might be helpful when answering question 5.  The quote from page 156 makes me question, but what if instead of dividing the result of the Linux gettimeofday function by 1000 (10^3), Oracle were to optimize this routine by performing a bit shift operation (effectively dividing by 2^10)?

A trip through Metalink (MOS) found another error on that site.  Doc ID 39817.1: “Interpreting Raw SQL_TRACE output” (https://supporthtml.oracle.com/epmos/faces/ui/km/DocumentDisplay.jspx?id=39817.1 ) essentially states that the &lt;b&gt;c=&lt;/b&gt; statistic represents the microsecond CPU consumption rounded to 1/100th of a second in Oracle Database 9.0.1 and above (this statement is incorrect for some operating system platforms, including the Windows operating system).

But why divide or multiply by 1024, rather than 1000?  Efficiency, especially with older CPUs (division performance is impacted more than multiplication).  In one article that I found (http://stackoverflow.hewgill.com/questions/545/844.html ), the following statement was made:
&lt;blockquote&gt;
 “On the 1995-era Sparc I was running this code on integer multiplication took 33 clock cycles; one cycle per bit in the word. The bit shift took 1 cycle.”
&lt;/blockquote&gt;
So, if what this person stated was actually true, a bit shift operation is roughly 33 times more efficient than a multiplication (and even more efficient than a division) on some CPUs from the 1995 time frame.

Another article offered several comparisons between bit shift operations and multiplication/division (http://stackoverflow.com/questions/6357038/is-multiplication-and-division-using-shift-operators-in-c-actually-faster ).  Among other things, the number of clock cycles required for such operations on Intel 80486 and Core i7 was discussed, as well as some of the automatic optimizations that are built into modern C code compilers:
&lt;blockquote&gt;
“Say we stick to &quot;486&quot; (the newest one listed), 32 bit registers and immediates, IMUL takes 13-42 cycles and IDIV 44. Each SAL takes 2, and adding 1, so even with a few of those together shifting superficially looks like a winner.”
&lt;/blockquote&gt;
So, for the Intel 80486 processor, a bit shift operation is roughly 21 or 22 times more efficient than a multiply or divide operation.

The getrusage function, mentioned in the “Optimizing Oracle Performance” book, is not available on some platforms, including Windows and Solaris.  Some of the websites that I found indicated that the C programming language’s clock() function might be a suitable substitute (on some operating system platforms, a call to the clock() function actually calls getrusage behind the scenes).  The C clock() function returns the number of ticks counted, and that number must be divided by the CLOCKS_PER_SEC (macro function) constant that varies by operating system (1,000,000 on some OS platforms, and 128 or 1 on others)
http://web.archiveorange.com/archive/v/uSKRm99PbuVNLTzGkJSN

Oddly, it seems that the C clock() function is not applied consistently across all platforms.  Apparently, that function returns the wall clock time on Windows and Solaris, and the CPU usage time on other platforms.
http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properl
http://bytes.com/topic/c/answers/517364-clock_t-clock-ambiguity 
http://rabbit.eng.miami.edu/info/functions/time.html 	

The “Optimizing Oracle Performance” book states that HP-UX and a few other systems use the times() function to determine CPU usage.  Some OS platforms require the value returned by times() to be divided by 128 (might this also be a source of calculation problem, if the number was actually divided by 100 thinking that doing so would generate a centisecond value).:
http://freebsd70.unixmanpages.net/man7/clocks.html

So, the answer to question number 3 (How is it possible that the CPU consumption exceeds the elapsed time by 7.175347 seconds?), in this case, the difference is probably caused by either Oracle Database or the operating system performing a bit shifting 2^10 rather than a multiplication of 1000 when returning the number of CPU microseconds consumed (of course, it could be incorrectly bit shifting the elapsed time instead).

Other possibilities mentioned in the OTN thread that might cause the CPU time to exceed the elapsed time:
* The session was spinning on a latch that could not be obtained. The fact that the session did not post a latch related wait event would mean that either the _SPIN_COUNT parameter was modified to an extremely high value, or that the session encountered a bug in the code that resulted in a nearly infinite loop.
* Auditing is enabled, and something went wrong in the audit code.
* The session&#039;s process was suspended at the operating system level, although the CPU time probably would not closely equal the elapsed time if that happened.
* The session&#039;s process was in the CPU run queue for 299 seconds - some operating systems will continue to accumulate CPU time for processes even when those processes are sitting in the run queue. It seems very unlikely that this is what happened, unless someone had used something such as the nice OS utility and there was a severe shortage of CPU availability. The tim= time stamps closely agree with the reported wait event elapsed times, so that fact might decrease the chances that the process spent a lot of time in the run queue due to excessive competition for the CPU.
* The server&#039;s clock was resynchronized with an external time source. I could see this affecting the reported elapsed time, but not the CPU time.
* Memory is over-allocated on the server, which resulted in at least a portion of the buffer cache being swapped to the swap file. It seems unreasonable that it would take nearly 5 minutes to perform a memory swap operation.
* Parallel query is enabled for the SQL statement (it very likely was not in this case).

---

For question number 5 (The trace file indicates that 306.35 seconds of CPU were burned during the first fetch call, does the number 306.35 represent 100% of the CPU consumption during the fetch call, or is the actual CPU consumption higher or lower than that number?), I think that the safest bet is to state that the answer is an unknown.  Does the reported CPU time include the CPU time required to write the previous trace file line to the 10046 trace file?  The OP’s operating system is outputting CPU usage statistics that appear to be rounded to the 1/100th of a second – was the actual utilization higher or lower than that value (even if we divide by 1.024), keeping in mind the final quote from the book “Optimizing Oracle Performance”?  Maybe “during the fetch call” must be better defined – should that figure also include or exclude the CPU time to perform the context switch to perform the process state transition?  What about CPU consumption in un-instrumented code that is falsely associated with the FETCH call?]]></description>
		<content:encoded><![CDATA[<p>There have been fewer attempts at answering the eight brain teaser questions that were posed directly or indirectly by the OP, despite the seemingly high number of views of the OTN thread.  I thought that I might take an attempt at answering questions number 3 and 5.</p>
<p>#3 In the OTN thread, Jonathan Lewis noticed that with c=306350000 and e=299174653, the c (CPU) value is roughly 1.0239838 times the value of the e (Elapsed) time, which is roughly the same value as 1024/1000 (2^10 / 10^3).  That might imply that the OP’s combination of Oracle Database version and operating system version very likely assumes that there are 1024 milliseconds of CPU time (2^10 ticks) per second, rather than 1000.  But why?</p>
<p>I took a look through the book “Optimizing Oracle Performance” for clues, in part because I thought that I remembered that the reason for the bit shift optimization (using 2^10 rather than 10^3) was mentioned in that book.  While I did not find the quote that I remembered., I found a couple of interesting quotes that lead down the path to a couple other lines of thought:<br />
Page 148:</p>
<blockquote><p>
“On POSIX-compliant operating systems, the Oracle kernel obtains CPU usage information from a function called getrusage on Linux and many other operating systems, or a similar function called times on HP-UX and a few other systems.”
</p></blockquote>
<p>Page 156:</p>
<blockquote><p>
“The Linux gettimeofday call, for example, converts a value from nanoseconds (10^-9 seconds) to microseconds (10^-6) by performing an integer division of the nanosecond value by 1,000, effectively discarding the final three digits of information.”
</p></blockquote>
<p>Page 163:</p>
<blockquote><p>
“With a 1-cs clock resolution, getrusage may return microsecond data, but those microsecond values will never contain valid detail smaller than 1/100th (0.01) of a second.”
</p></blockquote>
<p>Page 164:</p>
<blockquote><p>
“At every interrupt, the operating system’s process scheduler tallies one full centisecond (10,000 microseconds) of CPU consumption to whatever process is running at that time.”
</p></blockquote>
<p>Interesting… the quote from page 164 might be helpful when answering question 5.  The quote from page 156 makes me question, but what if instead of dividing the result of the Linux gettimeofday function by 1000 (10^3), Oracle were to optimize this routine by performing a bit shift operation (effectively dividing by 2^10)?</p>
<p>A trip through Metalink (MOS) found another error on that site.  Doc ID 39817.1: “Interpreting Raw SQL_TRACE output” (<a href="https://supporthtml.oracle.com/epmos/faces/ui/km/DocumentDisplay.jspx?id=39817.1" rel="nofollow">https://supporthtml.oracle.com/epmos/faces/ui/km/DocumentDisplay.jspx?id=39817.1</a> ) essentially states that the <b>c=</b> statistic represents the microsecond CPU consumption rounded to 1/100th of a second in Oracle Database 9.0.1 and above (this statement is incorrect for some operating system platforms, including the Windows operating system).</p>
<p>But why divide or multiply by 1024, rather than 1000?  Efficiency, especially with older CPUs (division performance is impacted more than multiplication).  In one article that I found (<a href="http://stackoverflow.hewgill.com/questions/545/844.html" rel="nofollow">http://stackoverflow.hewgill.com/questions/545/844.html</a> ), the following statement was made:</p>
<blockquote><p>
 “On the 1995-era Sparc I was running this code on integer multiplication took 33 clock cycles; one cycle per bit in the word. The bit shift took 1 cycle.”
</p></blockquote>
<p>So, if what this person stated was actually true, a bit shift operation is roughly 33 times more efficient than a multiplication (and even more efficient than a division) on some CPUs from the 1995 time frame.</p>
<p>Another article offered several comparisons between bit shift operations and multiplication/division (<a href="http://stackoverflow.com/questions/6357038/is-multiplication-and-division-using-shift-operators-in-c-actually-faster" rel="nofollow">http://stackoverflow.com/questions/6357038/is-multiplication-and-division-using-shift-operators-in-c-actually-faster</a> ).  Among other things, the number of clock cycles required for such operations on Intel 80486 and Core i7 was discussed, as well as some of the automatic optimizations that are built into modern C code compilers:</p>
<blockquote><p>
“Say we stick to &#8220;486&#8243; (the newest one listed), 32 bit registers and immediates, IMUL takes 13-42 cycles and IDIV 44. Each SAL takes 2, and adding 1, so even with a few of those together shifting superficially looks like a winner.”
</p></blockquote>
<p>So, for the Intel 80486 processor, a bit shift operation is roughly 21 or 22 times more efficient than a multiply or divide operation.</p>
<p>The getrusage function, mentioned in the “Optimizing Oracle Performance” book, is not available on some platforms, including Windows and Solaris.  Some of the websites that I found indicated that the C programming language’s clock() function might be a suitable substitute (on some operating system platforms, a call to the clock() function actually calls getrusage behind the scenes).  The C clock() function returns the number of ticks counted, and that number must be divided by the CLOCKS_PER_SEC (macro function) constant that varies by operating system (1,000,000 on some OS platforms, and 128 or 1 on others)<br />
<a href="http://web.archiveorange.com/archive/v/uSKRm99PbuVNLTzGkJSN" rel="nofollow">http://web.archiveorange.com/archive/v/uSKRm99PbuVNLTzGkJSN</a></p>
<p>Oddly, it seems that the C clock() function is not applied consistently across all platforms.  Apparently, that function returns the wall clock time on Windows and Solaris, and the CPU usage time on other platforms.<br />
<a href="http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properl" rel="nofollow">http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properl</a><br />
<a href="http://bytes.com/topic/c/answers/517364-clock_t-clock-ambiguity" rel="nofollow">http://bytes.com/topic/c/answers/517364-clock_t-clock-ambiguity</a><br />
<a href="http://rabbit.eng.miami.edu/info/functions/time.html" rel="nofollow">http://rabbit.eng.miami.edu/info/functions/time.html</a> 	</p>
<p>The “Optimizing Oracle Performance” book states that HP-UX and a few other systems use the times() function to determine CPU usage.  Some OS platforms require the value returned by times() to be divided by 128 (might this also be a source of calculation problem, if the number was actually divided by 100 thinking that doing so would generate a centisecond value).:<br />
<a href="http://freebsd70.unixmanpages.net/man7/clocks.html" rel="nofollow">http://freebsd70.unixmanpages.net/man7/clocks.html</a></p>
<p>So, the answer to question number 3 (How is it possible that the CPU consumption exceeds the elapsed time by 7.175347 seconds?), in this case, the difference is probably caused by either Oracle Database or the operating system performing a bit shifting 2^10 rather than a multiplication of 1000 when returning the number of CPU microseconds consumed (of course, it could be incorrectly bit shifting the elapsed time instead).</p>
<p>Other possibilities mentioned in the OTN thread that might cause the CPU time to exceed the elapsed time:<br />
* The session was spinning on a latch that could not be obtained. The fact that the session did not post a latch related wait event would mean that either the _SPIN_COUNT parameter was modified to an extremely high value, or that the session encountered a bug in the code that resulted in a nearly infinite loop.<br />
* Auditing is enabled, and something went wrong in the audit code.<br />
* The session&#8217;s process was suspended at the operating system level, although the CPU time probably would not closely equal the elapsed time if that happened.<br />
* The session&#8217;s process was in the CPU run queue for 299 seconds &#8211; some operating systems will continue to accumulate CPU time for processes even when those processes are sitting in the run queue. It seems very unlikely that this is what happened, unless someone had used something such as the nice OS utility and there was a severe shortage of CPU availability. The tim= time stamps closely agree with the reported wait event elapsed times, so that fact might decrease the chances that the process spent a lot of time in the run queue due to excessive competition for the CPU.<br />
* The server&#8217;s clock was resynchronized with an external time source. I could see this affecting the reported elapsed time, but not the CPU time.<br />
* Memory is over-allocated on the server, which resulted in at least a portion of the buffer cache being swapped to the swap file. It seems unreasonable that it would take nearly 5 minutes to perform a memory swap operation.<br />
* Parallel query is enabled for the SQL statement (it very likely was not in this case).</p>
<p>&#8212;</p>
<p>For question number 5 (The trace file indicates that 306.35 seconds of CPU were burned during the first fetch call, does the number 306.35 represent 100% of the CPU consumption during the fetch call, or is the actual CPU consumption higher or lower than that number?), I think that the safest bet is to state that the answer is an unknown.  Does the reported CPU time include the CPU time required to write the previous trace file line to the 10046 trace file?  The OP’s operating system is outputting CPU usage statistics that appear to be rounded to the 1/100th of a second – was the actual utilization higher or lower than that value (even if we divide by 1.024), keeping in mind the final quote from the book “Optimizing Oracle Performance”?  Maybe “during the fetch call” must be better defined – should that figure also include or exclude the CPU time to perform the context switch to perform the process state transition?  What about CPU consumption in un-instrumented code that is falsely associated with the FETCH call?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/#comment-4663</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Sat, 28 Apr 2012 13:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=6302#comment-4663</guid>
		<description><![CDATA[Mladen,

Nice analysis, and the explanation of why buffer busy waits should be considered, and then discounted due to the lack of wait events reporting that type of problem.  The lack of wait events makes this problem a bit difficult to investigate.  A couple of years ago Tanel Poder and James Morle put together a blog article series that describes approaches to troubleshooting problems like this one, but the series may not have covered the memory-strapped system situation that you mentioned.  Below is a link to one of the articles in the series:
 http://blog.tanelpoder.com/2010/01/15/beyond-oracle-wait-interface-part-2/

I &lt;i&gt;think&lt;/i&gt; that the time/CPU required for a sort/hash actually would appear on the FETCH call line in the trace file, but I agree with you that the sort/hash would need to complete before the fetched row could be sent to the client.  With so few consistent gets reported, it is important to think about what else could happen - maybe the runtime engine is pinning the blocks and then re-visiting the same blocks frequently:
http://books.google.com/books?id=G9AJA91PL54C&amp;pg=PA114

At this point, it appears that the OP has abandoned the OTN thread.  I guess that I should get back to finishing the review of the performance tuning book - the recipe for the souffle is faulty, it seems that the souffle deflates every time I open the oven door to check on it.]]></description>
		<content:encoded><![CDATA[<p>Mladen,</p>
<p>Nice analysis, and the explanation of why buffer busy waits should be considered, and then discounted due to the lack of wait events reporting that type of problem.  The lack of wait events makes this problem a bit difficult to investigate.  A couple of years ago Tanel Poder and James Morle put together a blog article series that describes approaches to troubleshooting problems like this one, but the series may not have covered the memory-strapped system situation that you mentioned.  Below is a link to one of the articles in the series:<br />
 <a href="http://blog.tanelpoder.com/2010/01/15/beyond-oracle-wait-interface-part-2/" rel="nofollow">http://blog.tanelpoder.com/2010/01/15/beyond-oracle-wait-interface-part-2/</a></p>
<p>I <i>think</i> that the time/CPU required for a sort/hash actually would appear on the FETCH call line in the trace file, but I agree with you that the sort/hash would need to complete before the fetched row could be sent to the client.  With so few consistent gets reported, it is important to think about what else could happen &#8211; maybe the runtime engine is pinning the blocks and then re-visiting the same blocks frequently:<br />
<a href="http://books.google.com/books?id=G9AJA91PL54C&#038;pg=PA114" rel="nofollow">http://books.google.com/books?id=G9AJA91PL54C&#038;pg=PA114</a></p>
<p>At this point, it appears that the OP has abandoned the OTN thread.  I guess that I should get back to finishing the review of the performance tuning book &#8211; the recipe for the souffle is faulty, it seems that the souffle deflates every time I open the oven door to check on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mladen Gogala</title>
		<link>http://hoopercharles.wordpress.com/2012/04/26/brain-teaser-10046-extended-sql-trace-shows-a-fetch-call-with-c306350000-e299174653-p0-cr22298-how-is-that-possible/#comment-4662</link>
		<dc:creator><![CDATA[Mladen Gogala]]></dc:creator>
		<pubDate>Fri, 27 Apr 2012 15:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=6302#comment-4662</guid>
		<description><![CDATA[Well, the first thought was that there was some kind of buffer busy wait problem, which would burn CPU like crazy, but there is no indication of any such thing in the trace file. A COU intensive operations like sort/hash would be done before the fetch phase and your trace shows that this is happening during the fetch phase. Being an ex-system administrator, I would also suspect paging. As a matter of fact, paging fits the description perfectly. On a memory-strapped systems, the parts of SGA containing the requested blocks might have been swapped out. The VM susbsystem has to make room to bring them in. So, it will make a survey of the allocated memory and chose what to swap out to make room for the needed part of SGA. That would account for the time in minutes.
You have even tried to give us a hint, by mentioning the OS. Good job, Charles!]]></description>
		<content:encoded><![CDATA[<p>Well, the first thought was that there was some kind of buffer busy wait problem, which would burn CPU like crazy, but there is no indication of any such thing in the trace file. A COU intensive operations like sort/hash would be done before the fetch phase and your trace shows that this is happening during the fetch phase. Being an ex-system administrator, I would also suspect paging. As a matter of fact, paging fits the description perfectly. On a memory-strapped systems, the parts of SGA containing the requested blocks might have been swapped out. The VM susbsystem has to make room to bring them in. So, it will make a survey of the allocated memory and chose what to swap out to make room for the needed part of SGA. That would account for the time in minutes.<br />
You have even tried to give us a hint, by mentioning the OS. Good job, Charles!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
