<?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/"
	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>Oracle Logbook</title>
	<atom:link href="http://heliodias.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://heliodias.wordpress.com</link>
	<description>Notes &#38; tips about cases i see in my day-to-day Oracle DBA job. Mostly anything related to Oracle RDBMS will be the subject.</description>
	<lastBuildDate>Tue, 06 Dec 2011 14:12:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='heliodias.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oracle Logbook</title>
		<link>http://heliodias.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://heliodias.wordpress.com/osd.xml" title="Oracle Logbook" />
	<atom:link rel='hub' href='http://heliodias.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Decreasing the interconnect traffic among RAC instances</title>
		<link>http://heliodias.wordpress.com/2011/12/05/decreasing-the-interconnect-traffic-among-rac-instances/</link>
		<comments>http://heliodias.wordpress.com/2011/12/05/decreasing-the-interconnect-traffic-among-rac-instances/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:43:30 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=294</guid>
		<description><![CDATA[When you access one block trought two or more sessions using different instances, The data must come and back ,  between both instances. Now imagine that you area inserting data using two instances, what actually happen is that the block must &#8220;travel&#8221; from one instances to another, consuming time and resource as you may notice below: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=294&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you access one block trought two or more sessions using different instances, The data must come and back ,  between both instances.</p>
<p>Now imagine that you area inserting data using two instances, what actually happen is that the block must &#8220;travel&#8221; from one instances to another, consuming time and resource as you may notice below:</p>
<p>INSTANCE1&gt; insert into l3ajuste values (10);</p>
<p>1 row created.</p>
<p>INSTANCE2&gt; insert into l3ajuste values (10);</p>
<p>1 row created.</p>
<p>INSTANCE2&gt; commit;</p>
<p>Commit complete.</p>
<p>INSTANCE1&gt; commit;</p>
<p>Commit complete.</p>
<p>SQL&gt; select n,rowid from l3ajuste;</p>
<p>         N ROWID<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
        10 AA8H+3AAKAAAAE7AAA<br />
        10 AA8H+3AAKAAAAE7AAB</p>
<p> As you notice we were using the same block, on of course different rows.</p>
<p>And this is the root of a interconnect traffic when you are using SEGMENT_SPACE_MANAGEMENT=&#8217;MANUAL&#8217;;</p>
<p>When you instead create the table at a TABLESPACE with the SEGMENT_SPACE_MANAGEMENT=&#8217;AUTO&#8217;</p>
<p>Oracle is clever enough to make each instance use a different block, allowing us to have more performance since we don´t have the interconnect traffic, as you can see bellow:</p>
<p>SQL&gt; create table l3ajusteB  (n number) TABLESPACE TBS_SEG_SPACE_AUTO;</p>
<p>INSTANCE1&gt; insert into l3ajusteb values (10);</p>
<p>1 row created.</p>
<p>INSTANCE2&gt; insert into l3ajusteb values (10);</p>
<p>1 row created.</p>
<p>INSTANCE2&gt; commit;</p>
<p>Commit complete.</p>
<p>INSTANCE1&gt; commit;</p>
<p>Commit complete.</p>
<p>SQL&gt; select n,rowid from l3ajusteb;</p>
<p>            N ROWID<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
        10 AA8IAGABXAAB3CsAAA<br />
        10 AA8IAGABXAAB3CzAAA</p>
<p>As you notice , we are not sharing the same block, thus the interconnect traffic , simple doesn´t happen.</p>
<p>The botton line is, if you want to decrease the interconnect traffic among RAC instances, the first step is move your data to automatic space management tablespaces.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=294&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/12/05/decreasing-the-interconnect-traffic-among-rac-instances/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Greatly Boosting Buffer Cache Efficiency with IOT</title>
		<link>http://heliodias.wordpress.com/2011/11/22/greatly-boosting-buffer-cache-efficiency-with-iot/</link>
		<comments>http://heliodias.wordpress.com/2011/11/22/greatly-boosting-buffer-cache-efficiency-with-iot/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 13:41:22 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=292</guid>
		<description><![CDATA[One very important thing regarding the IOT is the clustering factor. Since the data are stored together according to the PK, as a bonus you decrease the amount of buffer cache usage. Martin Widlake wrote a wonderful article about it: http://mwidlake.wordpress.com/2011/08/08/iot-part-4-greatly-boosting-buffer-cache-efficiency/ &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=292&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One very important thing regarding the IOT is the clustering factor.</p>
<p>Since the data are stored together according to the PK, as a bonus you decrease the amount of buffer cache usage.</p>
<p>Martin Widlake wrote a wonderful article about it:</p>
<p><a href="http://mwidlake.wordpress.com/2011/08/08/iot-part-4-greatly-boosting-buffer-cache-efficiency/">http://mwidlake.wordpress.com/2011/08/08/iot-part-4-greatly-boosting-buffer-cache-efficiency/</a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=292&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/11/22/greatly-boosting-buffer-cache-efficiency-with-iot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find out what is eating your PGA and possible gonna eat your temp seg</title>
		<link>http://heliodias.wordpress.com/2011/11/21/how-to-find-out-what-is-eating-your-pga-and-possible-gonna-eat-your-temp-seg/</link>
		<comments>http://heliodias.wordpress.com/2011/11/21/how-to-find-out-what-is-eating-your-pga-and-possible-gonna-eat-your-temp-seg/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 17:44:15 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=289</guid>
		<description><![CDATA[select sql_id,MAX_MEM_USED from  v$sql_workarea_active order by 2; SQL_ID        MAX_MEM_USED &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212; 3mfa13g41v37x            0 59x35kd3vbd8f        71680 3z294wg0udavm        71680 9m2ctqgmdmw5w        88064 1rwxnm0m9vmc3       306176 9t202yjs4usz2       337920<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=289&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select sql_id,MAX_MEM_USED from  v$sql_workarea_active order by 2;</p>
<p>SQL_ID        MAX_MEM_USED<br />
&#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;<br />
3mfa13g41v37x            0<br />
59x35kd3vbd8f        71680<br />
3z294wg0udavm        71680<br />
9m2ctqgmdmw5w        88064<br />
1rwxnm0m9vmc3       306176<br />
9t202yjs4usz2       337920</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=289&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/11/21/how-to-find-out-what-is-eating-your-pga-and-possible-gonna-eat-your-temp-seg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Tuning shared_pool_reserved_size</title>
		<link>http://heliodias.wordpress.com/2011/11/04/tuning-shared_pool_reserved_size/</link>
		<comments>http://heliodias.wordpress.com/2011/11/04/tuning-shared_pool_reserved_size/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 17:25:25 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=285</guid>
		<description><![CDATA[select case when (request_failures&#62;0 and request_misses&#62;0) then &#8216;increase reserved&#8217; &#8211; when (request_failures&#62;0 and free_space*2&#62;(select to_number(value) from v$parameter where name=&#8217;shared_pool_reserved_size&#8217;)) then &#8216;increase the shared_pool_size&#8217; &#8211; when (request_failures=0 and free_space*2&#62;(select to_number(value) from v$parameter where name=&#8217;shared_pool_reserved_size&#8217;)) then &#8216;decrease the shared_pool_reserved_size&#8217; &#8211; else &#8216;If your suffering 4031 &#8211; Pin Objects and if possible increase shared_pool&#8217; end from v$shared_pool_reserved; You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=285&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select case when (request_failures&gt;0 and request_misses&gt;0)<br />
then &#8216;increase reserved&#8217;<br />
&#8211;<br />
when (request_failures&gt;0 and free_space*2&gt;(select to_number(value) from v$parameter where name=&#8217;shared_pool_reserved_size&#8217;))<br />
then &#8216;increase the shared_pool_size&#8217;<br />
&#8211;<br />
when (request_failures=0 and free_space*2&gt;(select to_number(value) from v$parameter where name=&#8217;shared_pool_reserved_size&#8217;))<br />
then &#8216;decrease the shared_pool_reserved_size&#8217;<br />
&#8211;<br />
else<br />
&#8216;If your suffering 4031 &#8211; Pin Objects and if possible increase shared_pool&#8217;<br />
end<br />
from v$shared_pool_reserved;</p>
<p>You may also check the  _shared_pool_reserved_min_alloc</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=285&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/11/04/tuning-shared_pool_reserved_size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>How to have a raw idea about the table growing usage</title>
		<link>http://heliodias.wordpress.com/2011/11/01/how-to-have-a-raw-idea-about-the-table-growing-usage/</link>
		<comments>http://heliodias.wordpress.com/2011/11/01/how-to-have-a-raw-idea-about-the-table-growing-usage/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 19:38:06 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=280</guid>
		<description><![CDATA[This just will work for tables already populated. You must connect as sysdba SET SERVEROUT ON; CREATE OR REPLACE PROCEDURE ESPACO(VOWNER IN VARCHAR2,VTABELA IN VARCHAR2,VPROJETADO IN NUMBER) IS SAIDA NUMBER; BEGIN EXECUTE IMMEDIATE &#8216;SELECT BYTES/(SELECT COUNT(*) FROM &#8216;&#124;&#124;VOWNER&#124;&#124;&#8217;.'&#124;&#124;VTABELA&#124;&#124;&#8217;)*&#8217;&#124;&#124;VPROJETADO&#124;&#124;&#8217; FROM DBA_SEGMENTS WHERE SEGMENT_NAME=:1 and owner=:2&#8242; into saida using vtabela,vowner; dbms_output.put_line(TRUNC(saida)); END; /<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=280&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This just will work for tables already populated.</p>
<p>You must connect as sysdba</p>
<p>SET SERVEROUT ON;<br />
CREATE OR REPLACE PROCEDURE ESPACO(VOWNER IN VARCHAR2,VTABELA IN VARCHAR2,VPROJETADO IN NUMBER)<br />
IS<br />
SAIDA NUMBER;<br />
BEGIN<br />
EXECUTE IMMEDIATE &#8216;SELECT BYTES/(SELECT COUNT(*) FROM &#8216;||VOWNER||&#8217;.'||VTABELA||&#8217;)*&#8217;||VPROJETADO||&#8217; FROM DBA_SEGMENTS WHERE SEGMENT_NAME=:1 and owner=:2&#8242; into saida using vtabela,vowner;<br />
dbms_output.put_line(TRUNC(saida));<br />
END;<br />
/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=280&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/11/01/how-to-have-a-raw-idea-about-the-table-growing-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Troubleshooting Internal Errors</title>
		<link>http://heliodias.wordpress.com/2011/10/31/troubleshooting-internal-errors/</link>
		<comments>http://heliodias.wordpress.com/2011/10/31/troubleshooting-internal-errors/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 13:33:26 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=276</guid>
		<description><![CDATA[Abstract of Tamzin Oscroft wrote at Oracle Magazine Thu Jan 20 13:35:52 2011 Errors in file /DATA/oracle/admin/ prod/udump/prod_ora_2131.trc: ORA-00600: internal error code, arguments: [ktfbtgex-7], [1015817], [1024], [1015816], [], [], [], [] ORA-600 or ORA-7445: What Is the Difference? ORA-600 is a catchall message that indicates an error internal to the database code. The key point to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=276&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Abstract of Tamzin Oscroft wrote at <a href="http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51support-453463.html" target="_blank">Oracle Magazine</a></em></p>
<pre>Thu Jan 20 13:35:52 2011
Errors in file /DATA/oracle/admin/
prod/udump/prod_ora_2131.trc:
ORA-00600: internal error code,
arguments: [ktfbtgex-7], [1015817],
[1024], [1015816], [], [], [], []</pre>
<h4>ORA-600 or ORA-7445: What Is the Difference?</h4>
<p>ORA-600 is a catchall message that indicates an error internal to the database code. The key point to note  is that it is signaled when a code check fails within the database. At points throughout the code, Oracle Database performs checks to confirm that the information being used in internal processing is healthy, that the variables being used are within a valid range, that changes are being made to a consistent structure, and that a change won’t put a structure into an unstable state. If a check fails, Oracle Database signals an ORA-600 error and, if necessary, terminates the operation to protect the health of the database.</p>
<p>The first argument error message indicates the location in the code where the check is performed; in the example above, that is ktfbtgex-7 (which indicates that the error occurred at a particular point during tablespace handling).</p>
<p>An ORA-7445 error, on the other hand, traps a notification the operating system has sent to a process and returns that notification to the user. Unlike the ORA-600 error, the ORA-7445 error is an unexpected failure rather than a handled failure.</p>
<pre>ORA-07445: exception encountered:
core dump [kocgor()+96] [SIGSEGV]
[ADDR:0xF000000104] [PC:0x861B7EC]
[Address not mapped to object] []</pre>
<p> <br />
the failing function is kocgor, which is associated with the handling of user-defined objects. The trapped signal is SIGSEGV (signal 11, segmentation violation), which is an attempt to write to an illegal area of memory. Another common signal is SIGBUS (signal 10, bus error), and there are other signals that occur less frequently, with causes that range from invalid pointers to insufficient OS resources.</p>
<p>Both ORA-600 and ORA-7445 errors will </p>
<ul>
<li>Write the error message to the alert.log, along with details about the location of a trace containing further information</li>
<li>Write detailed information to a trace file in the location indicated in the alert.log</li>
<li>In Oracle Database 11<em>g</em> Release 1 onward, create an incident and place the relevant files in the incident directory in the location defined by the diagnostic_dest initialization file parameter</li>
<li>Write the error message to the user interface if the server process is not terminated or signal ORA-3113 if it is</li>
</ul>
<p>Often you will see multiple errors reported within the space of a few minutes, typically starting with an ORA-600. It is usually, but not always, the case that the first is the significant error and the others are side effects.</p>
<h4>Can I Resolve These Errors Myself?</h4>
<p>Check the whole <a href="http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51support-453463.html">Oracle Magazine article</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=276&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/10/31/troubleshooting-internal-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Help plan the future of Oracle DB Training and Certification</title>
		<link>http://heliodias.wordpress.com/2011/10/28/help-plan-the-future-of-oracle-db-training-and-certification/</link>
		<comments>http://heliodias.wordpress.com/2011/10/28/help-plan-the-future-of-oracle-db-training-and-certification/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 17:17:12 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=270</guid>
		<description><![CDATA[Are you an Oracle Database Administrator? Would you like to help define the depth and scope of future Oracle Database training and certification? Oracle is conducting this online Job Task survey prior to the next major Oracle Database product release to ensure that the tasks Oracle Database Administrators consider important are prominent in the design [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=270&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Are you an Oracle Database Administrator?</p>
<p><!-- Overriding empty line -->Would you like to help define the depth and scope of future Oracle Database training and certification?</p>
<p><!-- Overriding empty line -->Oracle is conducting this online Job Task survey prior to the next major Oracle Database product release to ensure that the tasks Oracle Database Administrators consider important are prominent in the design of future Database Administrator curriculum and certification offerings.</p>
<p><!-- Overriding empty line -->Join with other Oracle experts to take this online survey and tell us what tasks are important to you.</p>
<p><!-- Overriding empty line --><!-- Overriding empty line -->Please click on the link below to get started: <a href="http://www.surveymonkey.com/s/3J7DKYM"><br />
Oracle DBA Job-Task Analysis Survey</a></p>
<p><!-- Overriding empty line -->After completing the survey, get your FREE Oracle Database 11<em>g</em> Interactive Reference Guide. This free interactive reference guide can help you write custom data dictionary scripts, locate views pertinent to a specific database component, and more.</p>
<p><!-- Overriding empty line --><strong>If you have problems accessing the survey, please contact Oracle at <a href="mailto:ocpexam_ww@oracle.com?subject=DBA%20Survey">DBA-Survey-help</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=270&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/10/28/help-plan-the-future-of-oracle-db-training-and-certification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple way to get CPU usage</title>
		<link>http://heliodias.wordpress.com/2011/10/21/simple-way-to-get-cpu-usage/</link>
		<comments>http://heliodias.wordpress.com/2011/10/21/simple-way-to-get-cpu-usage/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 16:36:33 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=265</guid>
		<description><![CDATA[Often we want just the CPU usage from a query rather than complete 10046, As Tom Kyte published in setember Oracle Magazine: &#8220; SQL&#62; begin    2   :cpu := dbms_utility.get_cpu_time;    3   dbms_application_info.set_client_info(0);    4 end;    5 / PL/SQL procedure successfully completed. SQL&#62; select owner, f(owner) from stage; &#8230; 72841 rows selected. SQL&#62; select [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=265&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Often we want just the CPU usage from a query rather than complete 10046,</p>
<p>As Tom Kyte published in setember Oracle Magazine:</p>
<p>&#8220;</p>
<p>SQL&gt; begin<br />
   2   :cpu := dbms_utility.get_cpu_time;<br />
   3   dbms_application_info.set_client_info(0);<br />
   4 end;<br />
   5 /<br />
PL/SQL procedure successfully completed.</p>
<p>SQL&gt; select owner, f(owner) from stage;<br />
&#8230;<br />
72841 rows selected.</p>
<p>SQL&gt; select<br />
  2  dbms_utility.get_cpu_time-:cpu cpu_hsecs,<br />
  3  userenv(&#8216;client_info&#8217;)<br />
  4  from dual;</p>
<p>CPU_HSECS   USERENV(&#8216;CLIENT_INFO&#8217;)<br />
&#8212;&#8212;&#8212;   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
       118                     72841<br />
&#8220;</p>
<p>To read the whole article:</p>
<p><a href="http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51asktom-453438.html">http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51asktom-453438.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=265&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/10/21/simple-way-to-get-cpu-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Ucertify evaluation</title>
		<link>http://heliodias.wordpress.com/2011/10/21/ucertify-evaluation/</link>
		<comments>http://heliodias.wordpress.com/2011/10/21/ucertify-evaluation/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 13:51:42 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=263</guid>
		<description><![CDATA[Once again Ucertify gave me the honor to evaluate their products. This time the product was PMI RMP - PMI Risk Management Professional Prepkit. The overall feeling is that Ucertify have a very good solid product. The specific area evaluated areas were: Download , Installation and registration: Perfect. Usability: Excellent. Methodology: Very good. Quality of questions: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=263&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Once again <a href="http://www.ucertify.com" target="_blank">Ucertify</a> gave me the honor to evaluate their products.</p>
<p>This time the product was <a href="http://www.ucertify.com/exams/PMI/PMI-RMP.html" target="_blank">PMI RMP - PMI Risk Management Professional Prepkit</a>.</p>
<p>The overall feeling is that <a href="http://www.ucertify.com/" target="_blank">Ucertify</a> have a very good solid product.</p>
<p>The specific area evaluated areas were:</p>
<p>Download , Installation and registration: Perfect.</p>
<p>Usability: Excellent.</p>
<p>Methodology: Very good.</p>
<p>Quality of questions: Very good.</p>
<p>Answer explanations: Good.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=263&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/10/21/ucertify-evaluation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
		<item>
		<title>Rough idea regarding database usage</title>
		<link>http://heliodias.wordpress.com/2011/10/17/rough-idea-regarding-database-usage/</link>
		<comments>http://heliodias.wordpress.com/2011/10/17/rough-idea-regarding-database-usage/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 18:57:26 +0000</pubDate>
		<dc:creator>heliodias</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://heliodias.wordpress.com/?p=261</guid>
		<description><![CDATA[Often we need answer these questions: How  balanced are the usage among my RAC instances? What is the database with higher resource demand? (not just redo writting). Well the query below intend to answer those questions. It shows how much is the usage of database per second since the database started. select t1.inst_id,t1.STARTUP_TIME,trunc(value/((sysdate-STARTUP_TIME)*24*60*60)/1000000,2) from gv$instance t1,gv$sys_time_model [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=261&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Often we need answer these questions:</p>
<p>How  balanced are the usage among my RAC instances?</p>
<p>What is the database with higher resource demand? (not just redo writting).</p>
<p>Well the query below intend to answer those questions. It shows how much is the usage of database per second since the database started.</p>
<p>select<br />
t1.inst_id,t1.STARTUP_TIME,trunc(value/((sysdate-STARTUP_TIME)*24*60*60)/1000000,2)<br />
from<br />
gv$instance t1,gv$sys_time_model t2 where<br />
t1.INST_ID=t2.INST_ID and t2.stat_name=&#8217;DB time&#8217;<br />
order by 2;</p>
<p>Futher improvements:</p>
<p>One may create a table , to record snapshots (AWR already do it, but you need the license), then you can check the delta between couple of minutes or hours.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliodias.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliodias.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliodias.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliodias.wordpress.com&amp;blog=1496010&amp;post=261&amp;subd=heliodias&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliodias.wordpress.com/2011/10/17/rough-idea-regarding-database-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c5656353e80739d090b40f7a3019632?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">heliodias</media:title>
		</media:content>
	</item>
	</channel>
</rss>
