<?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>Oracle Database Tips blog &#187; determine oracle db size</title>
	<atom:link href="http://oracle-database-tips.com/wp/tag/determine-oracle-db-size/feed" rel="self" type="application/rss+xml" />
	<link>http://oracle-database-tips.com/wp</link>
	<description>News for Oracle professionals</description>
	<lastBuildDate>Fri, 03 Feb 2012 10:37:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Quick SQL to determine your Database size. (excluding tempfiles)</title>
		<link>http://oracle-database-tips.com/wp/oracle-scripts/quick-sql-to-determine-your-database-size-excluding-tempfiles</link>
		<comments>http://oracle-database-tips.com/wp/oracle-scripts/quick-sql-to-determine-your-database-size-excluding-tempfiles#comments</comments>
		<pubDate>Tue, 30 Jun 2009 12:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Scripts]]></category>
		<category><![CDATA[c control]]></category>
		<category><![CDATA[determine oracle db size]]></category>
		<category><![CDATA[select sum]]></category>
		<category><![CDATA[size mb]]></category>

		<guid isPermaLink="false">http://oracle-database-tips.com/wp/?p=51</guid>
		<description><![CDATA[quick sql to determine your database size exluding tempfiles.]]></description>
			<content:encoded><![CDATA[<p>SQL&gt; select DF.TOTAL/1048576 &#8220;DataFile Size Mb&#8221;,<br />
2  LOG.TOTAL/1048576 &#8220;Redo Log Size Mb&#8221;,<br />
3  CONTROL.TOTAL/1048576 &#8220;Control File Size Mb&#8221;,<br />
4  (DF.TOTAL + LOG.TOTAL + CONTROL.TOTAL)/1048576 &#8220;Total Size Mb&#8221; from dual,<br />
5  (select sum(a.bytes) TOTAL from dba_data_files a) DF,<br />
6  (select sum(b.bytes) TOTAL from v$log b) LOG,<br />
7  (select sum((cffsz+1)*cfbsz) TOTAL from x$kcccf c) CONTROL;</p>
]]></content:encoded>
			<wfw:commentRss>http://oracle-database-tips.com/wp/oracle-scripts/quick-sql-to-determine-your-database-size-excluding-tempfiles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

