<?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/"
		>
<channel>
	<title>Comments on: Advanced Oracle Troubleshooting @OOW 2008 presentation slides and scripts</title>
	<atom:link href="http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts</link>
	<description>Oracle, Exadata, Performance, Troubleshooting - Mobile Life and Productivity.</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:03:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: cam</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-11318</link>
		<dc:creator>cam</dc:creator>
		<pubDate>Thu, 12 Jan 2012 12:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-11318</guid>
		<description>Oops - ignore me. I just found this article which mentions broken links:

http://blog.tanelpoder.com/2011/04/15/new-scripts-tools-and-broken-links/</description>
		<content:encoded><![CDATA[<p>Oops &#8211; ignore me. I just found this article which mentions broken links:</p>
<p><a href="http://blog.tanelpoder.com/2011/04/15/new-scripts-tools-and-broken-links/" rel="nofollow">http://blog.tanelpoder.com/2011/04/15/new-scripts-tools-and-broken-links/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cam</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-11317</link>
		<dc:creator>cam</dc:creator>
		<pubDate>Thu, 12 Jan 2012 12:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-11317</guid>
		<description>Hi Tanel,

Thanks for your many excellent resources...

As Magesh says, the PerfSheet.zip link is 404&#039;ing.

Thanks,
cam</description>
		<content:encoded><![CDATA[<p>Hi Tanel,</p>
<p>Thanks for your many excellent resources&#8230;</p>
<p>As Magesh says, the PerfSheet.zip link is 404&#8242;ing.</p>
<p>Thanks,<br />
cam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magesh</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-9993</link>
		<dc:creator>Magesh</dc:creator>
		<pubDate>Fri, 16 Dec 2011 17:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-9993</guid>
		<description>Hi Tanel

I could not save any of your scripts. It throws &quot;Welcome to the 404 error page!
&quot; Please suggest

Thanks

Magesh</description>
		<content:encoded><![CDATA[<p>Hi Tanel</p>
<p>I could not save any of your scripts. It throws &#8220;Welcome to the 404 error page!<br />
&#8221; Please suggest</p>
<p>Thanks</p>
<p>Magesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tanel Poder</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-637</link>
		<dc:creator>Tanel Poder</dc:creator>
		<pubDate>Wed, 24 Dec 2008 05:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-637</guid>
		<description>@Austen

Yes, the right troubleshooting approach is identifying the session(s) of the problem end user, as the end user can experience a database problem only through a session. Thus the session level instrumentation is the perfect starting point. Otherwise you might end up troubleshooting the wrong thing...

Its usually easy to identify regular long running batch job sessions as usually these sessions are alive for long time and serve only that batch job.

The hardest part is identifying single problem user requests coming through a connection pool (black box) where there *is no instrumentation* by application itself. Since 10g Oracle has the infrastructure though for gathering end user stats, the application needs to bundle end users CLIENT_IDENTIFIER with any command it sends to database and then with help of DBMS_MONITOR+V$CLIENT_STATS or DBMS_MONITOR.CLIENT_ID_TRACE_ENABLE one can measure/trace only specific end user, no matter through which session/connection it uses.

@Betty

Thanks!!</description>
		<content:encoded><![CDATA[<p>@Austen</p>
<p>Yes, the right troubleshooting approach is identifying the session(s) of the problem end user, as the end user can experience a database problem only through a session. Thus the session level instrumentation is the perfect starting point. Otherwise you might end up troubleshooting the wrong thing&#8230;</p>
<p>Its usually easy to identify regular long running batch job sessions as usually these sessions are alive for long time and serve only that batch job.</p>
<p>The hardest part is identifying single problem user requests coming through a connection pool (black box) where there *is no instrumentation* by application itself. Since 10g Oracle has the infrastructure though for gathering end user stats, the application needs to bundle end users CLIENT_IDENTIFIER with any command it sends to database and then with help of DBMS_MONITOR+V$CLIENT_STATS or DBMS_MONITOR.CLIENT_ID_TRACE_ENABLE one can measure/trace only specific end user, no matter through which session/connection it uses.</p>
<p>@Betty</p>
<p>Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Betty</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-636</link>
		<dc:creator>Betty</dc:creator>
		<pubDate>Tue, 23 Dec 2008 13:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-636</guid>
		<description>wrong email address in my previous comments. gmail one is correct.

Again, Thanks a lot for your sharing...</description>
		<content:encoded><![CDATA[<p>wrong email address in my previous comments. gmail one is correct.</p>
<p>Again, Thanks a lot for your sharing&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Betty</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-635</link>
		<dc:creator>Betty</dc:creator>
		<pubDate>Tue, 23 Dec 2008 13:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-635</guid>
		<description>Your training session in China made me know that I can do my work more efficient and think things in a different way, Thanks for you did for inspiring me a lot!!!</description>
		<content:encoded><![CDATA[<p>Your training session in China made me know that I can do my work more efficient and think things in a different way, Thanks for you did for inspiring me a lot!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austen Birchall</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-634</link>
		<dc:creator>Austen Birchall</dc:creator>
		<pubDate>Tue, 09 Dec 2008 10:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-634</guid>
		<description>Hi Tanel

I attended your version of what I assume is the same presentation at the UKOUG (this one was on a Friday afternoon! )- defintely lots to further investigate/think about.

To me it seems that your whole approach depends on &#039;identifying the problem session&#039;. Do you have any further insights into how to do this in a long running batch job type (as opposed to a OLTP) environment?

Thanks

Austen</description>
		<content:encoded><![CDATA[<p>Hi Tanel</p>
<p>I attended your version of what I assume is the same presentation at the UKOUG (this one was on a Friday afternoon! )- defintely lots to further investigate/think about.</p>
<p>To me it seems that your whole approach depends on &#8216;identifying the problem session&#8217;. Do you have any further insights into how to do this in a long running batch job type (as opposed to a OLTP) environment?</p>
<p>Thanks</p>
<p>Austen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-625</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Fri, 26 Sep 2008 13:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-625</guid>
		<description>Tanel - I didn&#039;t get to attend OOW (maybe one of these years!), but wanted to thank you for posting your slides. Thanks also for posting/blogging all of your very cool work here, I really appreciate it!

Jerry</description>
		<content:encoded><![CDATA[<p>Tanel &#8211; I didn&#8217;t get to attend OOW (maybe one of these years!), but wanted to thank you for posting your slides. Thanks also for posting/blogging all of your very cool work here, I really appreciate it!</p>
<p>Jerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanelp</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-631</link>
		<dc:creator>tanelp</dc:creator>
		<pubDate>Fri, 26 Sep 2008 07:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-631</guid>
		<description>Thanks Rob!

I wish I had 2 (or 3) times more time to explain stuff there :)</description>
		<content:encoded><![CDATA[<p>Thanks Rob!</p>
<p>I wish I had 2 (or 3) times more time to explain stuff there :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Wijk</title>
		<link>http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/comment-page-1/#comment-633</link>
		<dc:creator>Rob van Wijk</dc:creator>
		<pubDate>Fri, 26 Sep 2008 01:36:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tanelpoder.com/2008/09/26/advanced-oracle-troubleshooting-oow-2008-presentation-slides-and-scripts/#comment-633</guid>
		<description>Thanks to you, Tanel. It was the best session I attended this OOW.</description>
		<content:encoded><![CDATA[<p>Thanks to you, Tanel. It was the best session I attended this OOW.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

