
<?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>CHizSTudio &#187; system</title>
	<atom:link href="http://www.chizstudio.com/tags/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chizstudio.com</link>
	<description>Lazy Trend Hunter&#039;s Digital life - Make your happy digital life</description>
	<lastBuildDate>Fri, 23 Apr 2010 03:32:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>tracking tablespace on oracle</title>
		<link>http://www.chizstudio.com/tracking-tablespace-on-oracle/</link>
		<comments>http://www.chizstudio.com/tracking-tablespace-on-oracle/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 00:57:27 +0000</pubDate>
		<dc:creator>sayo</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.chizstudio.com/?p=108</guid>
		<description><![CDATA[

SELECT
 DT.TABLESPACE_NAME,
 DT.BLOCK_SIZE,
 DT.INITIAL_EXTENT,
 DT.NEXT_EXTENT,
 DT.MIN_EXTENTS,
 DT.MAX_EXTENTS,
 DT.PCT_INCREASE,
 DT.MIN_EXTLEN,
 DT.STATUS,
 DT.CONTENTS,
 DT.LOGGING,
 DT.FORCE_LOGGING,
 DT.EXTENT_MANAGEMENT,
 DT.ALLOCATION_TYPE,
 DT.PLUGGED_IN,
 DT.SEGMENT_SPACE_MANAGEMENT,
 DF.PERCENT_BLOCKS_COALESCED,
 DF.TOTAL_BYTES
FROM
 SYS.DBA_TABLESPACES DT,
 SYS.DBA_FREE_SPACE_COALESCED DF
WHERE
 DT.TABLESPACE_NAME = DF.TABLESPACE_NAME (+)
ORDER BY
 DT.TABLESPACE_NAME

]]></description>
			<content:encoded><![CDATA[<pre class="brush: sql; ">

SELECT
 DT.TABLESPACE_NAME,
 DT.BLOCK_SIZE,
 DT.INITIAL_EXTENT,
 DT.NEXT_EXTENT,
 DT.MIN_EXTENTS,
 DT.MAX_EXTENTS,
 DT.PCT_INCREASE,
 DT.MIN_EXTLEN,
 DT.STATUS,
 DT.CONTENTS,
 DT.LOGGING,
 DT.FORCE_LOGGING,
 DT.EXTENT_MANAGEMENT,
 DT.ALLOCATION_TYPE,
 DT.PLUGGED_IN,
 DT.SEGMENT_SPACE_MANAGEMENT,
 DF.PERCENT_BLOCKS_COALESCED,
 DF.TOTAL_BYTES
FROM
 SYS.DBA_TABLESPACES DT,
 SYS.DBA_FREE_SPACE_COALESCED DF
WHERE
 DT.TABLESPACE_NAME = DF.TABLESPACE_NAME (+)
ORDER BY
 DT.TABLESPACE_NAME
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.chizstudio.com/tracking-tablespace-on-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tracking current sql of sid on oracle</title>
		<link>http://www.chizstudio.com/tracking-current-sql-of-sid-on-oracle/</link>
		<comments>http://www.chizstudio.com/tracking-current-sql-of-sid-on-oracle/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 02:44:19 +0000</pubDate>
		<dc:creator>sayo</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.chizstudio.com/?p=104</guid>
		<description><![CDATA[

SELECT
sid,
SQL_TEXT,
piece
FROM
v$session se,
sys.v_$sqltext sq
WHERE
se.sql_address = sq.ADDRESS (+) AND
se.SQL_HASH_VALUE = sq.HASH_VALUE (+) AND
sid = 204
ORDER BY
address,
hash_value,
piece

]]></description>
			<content:encoded><![CDATA[<pre class="brush: sql; ">

SELECT
sid,
SQL_TEXT,
piece
FROM
v$session se,
sys.v_$sqltext sq
WHERE
se.sql_address = sq.ADDRESS (+) AND
se.SQL_HASH_VALUE = sq.HASH_VALUE (+) AND
sid = 204
ORDER BY
address,
hash_value,
piece
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.chizstudio.com/tracking-current-sql-of-sid-on-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
