<?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>Techno Oracle &#187; Oracle Tips and Tricks</title>
	<atom:link href="http://www.technooracle.com/oracle-tutorials/category/oracle-tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technooracle.com</link>
	<description>Oracle information centre</description>
	<lastBuildDate>Tue, 17 Apr 2012 12:07:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to Calculate Oracle CPU usage</title>
		<link>http://www.technooracle.com/oracle-tutorials/how-to-calculate-oracle-cpu-usage/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/how-to-calculate-oracle-cpu-usage/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 07:14:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=406</guid>
		<description><![CDATA[If You wants to identify the impact of particular user on the Database,or if you want to determine how much resources are consumed, cpu, IO used by this ID,you can use the following script to display CPU utilization  for any Oracle user. select aa.username, bb.SID, VALUE/100 cpu_usage_seconds from v$session a, v$sesstat b, v$statname c where [...]]]></description>
			<content:encoded><![CDATA[<p>If You wants to identify the impact of particular user on the Database,or if you want to determine how much resources are consumed, cpu, IO used by this ID,you can use the following script to <span><span>display CPU utilization  for any Oracle user.</span></span></p>
<p><span>select<br />
 aa.username,<br />
 bb.SID,<br />
 VALUE/100 cpu_usage_seconds<br />
 from<br />
 v$session a,<br />
 v$sesstat b,<br />
 v$statname c<br />
where<br />
 b.STATISTIC# = c.STATISTIC#<br />
 and<br />
 NAME like &#8216;%CPU used by this session%&#8217;<br />
and<br />
 b.SID = a.SID<br />
and<br />
 a.status=&#8217;ACTIVE&#8217;<br />
and<br />
 a.username is not null<br />
 order by VALUE desc;</p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/how-to-calculate-oracle-cpu-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

