<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: High Value for MBRC Causes High BCHR, High CPU Usage, and Slow Performance</title>
	<atom:link href="http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/</link>
	<description>Miscellaneous Random Oracle Topics: Stop, Think, ... Understand</description>
	<lastBuildDate>Mon, 13 May 2013 14:10:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-124</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Mon, 04 Jan 2010 11:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-124</guid>
		<description><![CDATA[Sorry, I do not have much to suggest.  See if any of the the following will work:

Metalink Doc ID 352363.1 &quot;LTOM - The On-Board Monitor User Guide&quot;

Oracle Cluster Health Monitor(IPD/OS) http://www.oracle.com/technology/products/database/clustering/ipd_download_homepage.html

http://exchange.nagios.org/directory/Plugins/Databases/Oracle

Keep in mind that you cannot legally access AWR reports (or AWR/ADDM data) unless you have the Enterprise Edition of Oracle AND a Diagnostic Pack License.  If you do have a Diagnostic Pack License, you should be able to just use the Performance tab in Enterprise Manager Database Control and review ADDM reports.]]></description>
		<content:encoded><![CDATA[<p>Sorry, I do not have much to suggest.  See if any of the the following will work:</p>
<p>Metalink Doc ID 352363.1 &#8220;LTOM &#8211; The On-Board Monitor User Guide&#8221;</p>
<p>Oracle Cluster Health Monitor(IPD/OS) <a href="http://www.oracle.com/technology/products/database/clustering/ipd_download_homepage.html" rel="nofollow">http://www.oracle.com/technology/products/database/clustering/ipd_download_homepage.html</a></p>
<p><a href="http://exchange.nagios.org/directory/Plugins/Databases/Oracle" rel="nofollow">http://exchange.nagios.org/directory/Plugins/Databases/Oracle</a></p>
<p>Keep in mind that you cannot legally access AWR reports (or AWR/ADDM data) unless you have the Enterprise Edition of Oracle AND a Diagnostic Pack License.  If you do have a Diagnostic Pack License, you should be able to just use the Performance tab in Enterprise Manager Database Control and review ADDM reports.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balakrishna</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-122</link>
		<dc:creator><![CDATA[Balakrishna]]></dc:creator>
		<pubDate>Mon, 04 Jan 2010 06:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-122</guid>
		<description><![CDATA[Hi,

I am looking for a Performance tools which can give me the Charts of all my Database &amp; OS performance . I have tried using OS Watcher but i am looking for a tool which has  both Database &amp; OS Performance integrated . 

My company cannot afford money to buy a tool :) this is the major constraint. 

Any recommendations which comes to your mind will be appreciated , either it can be a ready maded tool or technical tips to gather stats or AWR reports to excel and develop charts or what ever you recommend . 

Regards

Bala]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am looking for a Performance tools which can give me the Charts of all my Database &amp; OS performance . I have tried using OS Watcher but i am looking for a tool which has  both Database &amp; OS Performance integrated . </p>
<p>My company cannot afford money to buy a tool <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  this is the major constraint. </p>
<p>Any recommendations which comes to your mind will be appreciated , either it can be a ready maded tool or technical tips to gather stats or AWR reports to excel and develop charts or what ever you recommend . </p>
<p>Regards</p>
<p>Bala</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-70</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Tue, 29 Dec 2009 10:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-70</guid>
		<description><![CDATA[Yes, that is one of the articles - probably the only one that is needed at the moment.

Here is code to have Excel automatically execute a Public Sub (macro) in a module after 60 seconds:
[code]
Application.OnTime DateAdd(&quot;s&quot;, 60, Now), &quot;CollectStatistics&quot;
[/code]

If the above is placed in the CollectStatistics Sub, that Sub will automatically re-execute every 60 seconds once the user manually executes the Sub for the first time.]]></description>
		<content:encoded><![CDATA[<p>Yes, that is one of the articles &#8211; probably the only one that is needed at the moment.</p>
<p>Here is code to have Excel automatically execute a Public Sub (macro) in a module after 60 seconds:</p>
<pre class="brush: plain; title: ; notranslate">
Application.OnTime DateAdd(&quot;s&quot;, 60, Now), &quot;CollectStatistics&quot;
</pre>
<p>If the above is placed in the CollectStatistics Sub, that Sub will automatically re-execute every 60 seconds once the user manually executes the Sub for the first time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balakrishna</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-67</link>
		<dc:creator><![CDATA[Balakrishna]]></dc:creator>
		<pubDate>Tue, 29 Dec 2009 03:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-67</guid>
		<description><![CDATA[Hi,

(Retrieve Data to Excel with a Macro using ADO ) Are you talking about this one ?

Regards

Bala]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>(Retrieve Data to Excel with a Macro using ADO ) Are you talking about this one ?</p>
<p>Regards</p>
<p>Bala</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-64</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Mon, 28 Dec 2009 12:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-64</guid>
		<description><![CDATA[It is a program that I custom developed over several years, primarily to help identify problems and find solutions.  The program is NOT for sale, and is not available for general usage by the public.

The use of the program in the examples of the blog articles is intended to inspire people to &lt;em&gt;think outside the box&lt;/em&gt;, so to speak, and allow *you* to put together your own solution for detecting performance problems.  Note that there are articles on this blog that show how to bring Oracle data into Excel - it is then possible to create an auto-scrolling chart in Excel that would then, for instance, show a running history of the last 60 minutes for a specific statistic.  In a later blog article I may show how to create such an auto-scrolling chart.

&lt;em&gt;Late follow-up:&lt;/em&gt;
This particular performance problem highlighted a couple of weaknesses in my program, which were correctly quickly after this performance problem was identified.  The program&#039;s capture periods are variable in length, with those captures being triggered either when an elapsed time timer expires or an event happens in the database (such as unexpected, excessive CPU consumption).  At the time of the capture, the program did not line-level the statistics shown in the graph to an average rate per minute, which very likely means that the first tall green bar does not represent a problem.

A second weakness appears in the SQL Monitor that was originally designed to work with Oracle 8i databases.  Prior to Oracle 9i R2, Oracle did not provide a CPU_TIME or ELAPSED_TIME statistic in V$SQL.  Since this portion of my program was not significantly updated since originally developed, those two key statistics that could have been used to directly tie one or two SQL statements back to the spike in overall CPU usage were not readily available without manually sampling V$SQL (or one of the other views).]]></description>
		<content:encoded><![CDATA[<p>It is a program that I custom developed over several years, primarily to help identify problems and find solutions.  The program is NOT for sale, and is not available for general usage by the public.</p>
<p>The use of the program in the examples of the blog articles is intended to inspire people to <em>think outside the box</em>, so to speak, and allow *you* to put together your own solution for detecting performance problems.  Note that there are articles on this blog that show how to bring Oracle data into Excel &#8211; it is then possible to create an auto-scrolling chart in Excel that would then, for instance, show a running history of the last 60 minutes for a specific statistic.  In a later blog article I may show how to create such an auto-scrolling chart.</p>
<p><em>Late follow-up:</em><br />
This particular performance problem highlighted a couple of weaknesses in my program, which were correctly quickly after this performance problem was identified.  The program&#8217;s capture periods are variable in length, with those captures being triggered either when an elapsed time timer expires or an event happens in the database (such as unexpected, excessive CPU consumption).  At the time of the capture, the program did not line-level the statistics shown in the graph to an average rate per minute, which very likely means that the first tall green bar does not represent a problem.</p>
<p>A second weakness appears in the SQL Monitor that was originally designed to work with Oracle 8i databases.  Prior to Oracle 9i R2, Oracle did not provide a CPU_TIME or ELAPSED_TIME statistic in V$SQL.  Since this portion of my program was not significantly updated since originally developed, those two key statistics that could have been used to directly tie one or two SQL statements back to the spike in overall CPU usage were not readily available without manually sampling V$SQL (or one of the other views).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balakrishna</title>
		<link>http://hoopercharles.wordpress.com/2009/12/27/high-value-for-mbrc-causes-high-bchr-high-cpu-usage-and-slow-performance/#comment-63</link>
		<dc:creator><![CDATA[Balakrishna]]></dc:creator>
		<pubDate>Mon, 28 Dec 2009 11:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=507#comment-63</guid>
		<description><![CDATA[Hi,

I guess you are using some software tool  to analyze the performance . What is that ? 

Regards

Bala]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I guess you are using some software tool  to analyze the performance . What is that ? </p>
<p>Regards</p>
<p>Bala</p>
]]></content:encoded>
	</item>
</channel>
</rss>
