 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Oracle 10g performance</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/oracle-10g-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 17:54:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Why do I not see Oracle database block gets and consistent gets</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 16:48:24 +0000</pubDate>
		<dc:creator>SAPORACLE</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle 10g performance]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi, i have two test scenarios where i&#8217;m trying to understand to actual concept of db block gets and consistent gets. SQL&#62; set autotrace on SQL&#62;select * from scott.emp; i get 14 rows then Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; [...]]]></description>
				<content:encoded><![CDATA[<p>hi,<br/><br/> i have two test scenarios where i&#8217;m trying to understand to actual concept of db block gets and consistent gets.<br/><br/> SQL&gt; set autotrace on<br/><br/> SQL&gt;select * from scott.emp;<br/><br/> i get 14 rows then<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-        1528  recursive calls           0  db block gets         289  consistent gets          44  physical reads           0  redo size        1585  bytes sent via SQL*Net to client         522  bytes received via SQL*Net from client           4  SQL*Net roundtrips to/from client          31  sorts (memory)           0  sorts (disk)          14  rows processed<br/><br/> on the above i do not see db block gets why?<br/><br/> when i run the same statement again this is what i get<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/>  <br/><br/>  <br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-           0  recursive calls           0  db block gets          10  consistent gets           0  physical reads           0  redo size        1585  bytes sent via SQL*Net to client         522  bytes received via SQL*Net from client           4  SQL*Net roundtrips to/from client           0  sorts (memory)           0  sorts (disk)          14  rows processed no db lock gets again why?<br/><br/> basically i want to understand the difference between db block gets and consisten gets<br/><br/> also i run the same statement from different session and i get below result<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-           0  recursive calls           0  db block gets           0  consistent gets           0  physical reads           0  redo size           0  bytes sent via SQL*Net to client           0  bytes received via SQL*Net from client           0  SQL*Net roundtrips to/from client           0  sorts (memory)           0  sorts (disk)          14  rows processed<br/><br/> here i do not see anything, why?<br/><br/> please help me understand the what&#8217;s happening here?<br/><br/> any help would be greatly appreciated<br/><br/> thanks in advance<br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to determine the number of concurrent processes in Oracle 10g</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/concurrent-processes-in-oracle-db/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/concurrent-processes-in-oracle-db/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:50:44 +0000</pubDate>
		<dc:creator>DBASAB</dc:creator>
				<category><![CDATA[Benchmarking oracle db]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g concurrent processes]]></category>
		<category><![CDATA[Oracle 10g performance]]></category>
		<category><![CDATA[Oracle performance]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How can I find out the number of concurrent processes at any point of time in 10g database]]></description>
				<content:encoded><![CDATA[<p>How can I find out the number of concurrent processes at any point of time in 10g database</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/concurrent-processes-in-oracle-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/14 queries in 0.018 seconds using memcached
Object Caching 389/406 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-24 20:58:13 -->