<?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: Visual Tuning</title>
	<atom:link href="http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/</link>
	<description>Just another Oracle weblog</description>
	<lastBuildDate>Fri, 24 May 2013 13:27:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Delphix &#171; Oracle Scratchpad</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-53410</link>
		<dc:creator><![CDATA[Delphix &#171; Oracle Scratchpad]]></dc:creator>
		<pubDate>Wed, 06 Feb 2013 19:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-53410</guid>
		<description><![CDATA[[...] you&#8217;re a regular follower or my blog you may recall Kyle Hailey and the joint webinar we did nearly two years ago on &#8220;Visual SQL Tuning&#8221; covering an approach I&#8217;ve [...]]]></description>
		<content:encoded><![CDATA[<p>[...] you&#8217;re a regular follower or my blog you may recall Kyle Hailey and the joint webinar we did nearly two years ago on &#8220;Visual SQL Tuning&#8221; covering an approach I&#8217;ve [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLTXPLAIN quick tips and tricks and DB Optimizer VST &#171; Karl Arao&#039;s Blog</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-44999</link>
		<dc:creator><![CDATA[SQLTXPLAIN quick tips and tricks and DB Optimizer VST &#171; Karl Arao&#039;s Blog]]></dc:creator>
		<pubDate>Sat, 11 Feb 2012 16:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-44999</guid>
		<description><![CDATA[[...] may also want to check out this ultimate SQL tune off by Kyle Hailey and Jonathan Lewis to know more about DB Optimizer [...]]]></description>
		<content:encoded><![CDATA[<p>[...] may also want to check out this ultimate SQL tune off by Kyle Hailey and Jonathan Lewis to know more about DB Optimizer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36522</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 19:28:11 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36522</guid>
		<description><![CDATA[Manish,
Thanks for the comment - glad you liked the presentation.

Rule 1: don&#039;t &lt;em&gt;&lt;strong&gt;change&lt;/strong&gt;&lt;/em&gt; anything unless you&#039;re fairly sure the change is going to introduce a reasonable improvement that&#039;s worth the risk.  In a production system you may make an index more efficient and &quot;desirable&quot; by rebuilding it with compression, but this may make the optimizer switch to using it in some cases where it should be using another index. This means that an inherently sensible decision actually causes problems if you don&#039;t do a huge amount of testing first.

Rule 2: There is no rule 2, there is only a guideline. The longer the prefix that repeats, the lower the percentage of rows with repeats you need to make the prefix worthwhile; but if the prefix is only a couple of bytes long you need most of the data to have a couple of repeats before it&#039;s likely to be worth compressing. 

The best job analysis is always to look at doing a &quot;validate index&quot; on a backup copy of production and then looking at index_stats for the &quot;optimum compression count&quot; and &quot;optimum compression percent saved&quot;, with a quick glance at index_histogram and a check of the data since this may give you some idea of the way in which the repeats occur.]]></description>
		<content:encoded><![CDATA[<p>Manish,<br />
Thanks for the comment &#8211; glad you liked the presentation.</p>
<p>Rule 1: don&#8217;t <em><strong>change</strong></em> anything unless you&#8217;re fairly sure the change is going to introduce a reasonable improvement that&#8217;s worth the risk.  In a production system you may make an index more efficient and &#8220;desirable&#8221; by rebuilding it with compression, but this may make the optimizer switch to using it in some cases where it should be using another index. This means that an inherently sensible decision actually causes problems if you don&#8217;t do a huge amount of testing first.</p>
<p>Rule 2: There is no rule 2, there is only a guideline. The longer the prefix that repeats, the lower the percentage of rows with repeats you need to make the prefix worthwhile; but if the prefix is only a couple of bytes long you need most of the data to have a couple of repeats before it&#8217;s likely to be worth compressing. </p>
<p>The best job analysis is always to look at doing a &#8220;validate index&#8221; on a backup copy of production and then looking at index_stats for the &#8220;optimum compression count&#8221; and &#8220;optimum compression percent saved&#8221;, with a quick glance at index_histogram and a check of the data since this may give you some idea of the way in which the repeats occur.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36519</link>
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 07:29:13 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36519</guid>
		<description><![CDATA[Hi Jonathan,

I just saw the event offline. I have a question regarding my existing system which is a medium to large size warehouse. What should be the rule of Thumb when going for Index Compression?
i.e. Only Fact table indexes or Dimension tables or All

Btw i really liked the presentation. I learned a lot form it specially the Visual analysis technique.

Thanks,]]></description>
		<content:encoded><![CDATA[<p>Hi Jonathan,</p>
<p>I just saw the event offline. I have a question regarding my existing system which is a medium to large size warehouse. What should be the rule of Thumb when going for Index Compression?<br />
i.e. Only Fact table indexes or Dimension tables or All</p>
<p>Btw i really liked the presentation. I learned a lot form it specially the Visual analysis technique.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36499</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Thu, 17 Jun 2010 07:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36499</guid>
		<description><![CDATA[If you missed the event, the recording, and pdfs of the slides and &quot;white paper&quot; are available through the original link.

The link will take you to a screen with a &quot;Get Webinar Replay&quot; button, and pressing this button will take you to a registration page. After registering, and supplying your email address, you will receive an email that includes buttons to &quot;Watch Now&quot; and &quot;Get Whitepaper&quot;.

If you select the option to watch you get taken through a couple more screens that ask for your name and email address again, you get taken to a screen that allows you to download or watch the webinar. There is a warning that you need to use Internet Explorer 6 with SP1, or later, to view the recording. It&#039;s possible that some other browsers will work - but I chose to get the download (a 20MB zip file) and found that I couldn&#039;t get the extract to run under Google Chrome. Luckily I also had IE6 on the same machine.)]]></description>
		<content:encoded><![CDATA[<p>If you missed the event, the recording, and pdfs of the slides and &#8220;white paper&#8221; are available through the original link.</p>
<p>The link will take you to a screen with a &#8220;Get Webinar Replay&#8221; button, and pressing this button will take you to a registration page. After registering, and supplying your email address, you will receive an email that includes buttons to &#8220;Watch Now&#8221; and &#8220;Get Whitepaper&#8221;.</p>
<p>If you select the option to watch you get taken through a couple more screens that ask for your name and email address again, you get taken to a screen that allows you to download or watch the webinar. There is a warning that you need to use Internet Explorer 6 with SP1, or later, to view the recording. It&#8217;s possible that some other browsers will work &#8211; but I chose to get the download (a 20MB zip file) and found that I couldn&#8217;t get the extract to run under Google Chrome. Luckily I also had IE6 on the same machine.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36470</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 20:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36470</guid>
		<description><![CDATA[I believe the session has been recorded and people who were registered will be able to replay it. Also, I sent a pdf file of the slides to Embarcadero - I think there was a &quot;print&quot; icon hidden at the bottom corner of the LiveMeeting screen that would have allowed you to download it.  I think it will also be made available, though, to attendees.

The list of books is on my blog at: http://jonathanlewis.wordpress.com/2009/01/14/books/]]></description>
		<content:encoded><![CDATA[<p>I believe the session has been recorded and people who were registered will be able to replay it. Also, I sent a pdf file of the slides to Embarcadero &#8211; I think there was a &#8220;print&#8221; icon hidden at the bottom corner of the LiveMeeting screen that would have allowed you to download it.  I think it will also be made available, though, to attendees.</p>
<p>The list of books is on my blog at: <a href="http://jonathanlewis.wordpress.com/2009/01/14/books/" rel="nofollow">http://jonathanlewis.wordpress.com/2009/01/14/books/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JC dauchy</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36469</link>
		<dc:creator><![CDATA[JC dauchy]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 20:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36469</guid>
		<description><![CDATA[Thanks Jonathan, arrived at the end. Do you know if the presentation has been recorded and would it be possible to have the presentation with the comments ?

I missed all the beginning, arrived for the questions.

Thanks

You mentionned 3-4 books, i did not get the name of the author, could you post some links to those books ?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks Jonathan, arrived at the end. Do you know if the presentation has been recorded and would it be possible to have the presentation with the comments ?</p>
<p>I missed all the beginning, arrived for the questions.</p>
<p>Thanks</p>
<p>You mentionned 3-4 books, i did not get the name of the author, could you post some links to those books ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcdauchy</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36464</link>
		<dc:creator><![CDATA[jcdauchy]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 09:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36464</guid>
		<description><![CDATA[Hope your calculation are right, otherwise Kyle will be waiting for you :)]]></description>
		<content:encoded><![CDATA[<p>Hope your calculation are right, otherwise Kyle will be waiting for you :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36463</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 09:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36463</guid>
		<description><![CDATA[According to my calculations it will be 7:00 pm in the UK, and 8:00 pm in France and other Westen European countries.

A discovery I made recently is that Google has a convenient &quot;world clock&quot; function, so if you type in &quot;what time {location}&quot; you can get the current time at location.  (If you do try this with location = San Francisco, don&#039;t be misled by &quot;San Francisco, Argentina&quot;, I&#039;m aiming for &quot;San Francisco, California&quot; ;) )

Thanks for the comment about the seminar - I&#039;ll have to improve the notes on the last few pages to help the people who have planes to catch.
]]></description>
		<content:encoded><![CDATA[<p>According to my calculations it will be 7:00 pm in the UK, and 8:00 pm in France and other Westen European countries.</p>
<p>A discovery I made recently is that Google has a convenient &#8220;world clock&#8221; function, so if you type in &#8220;what time {location}&#8221; you can get the current time at location.  (If you do try this with location = San Francisco, don&#8217;t be misled by &#8220;San Francisco, Argentina&#8221;, I&#8217;m aiming for &#8220;San Francisco, California&#8221; ;) )</p>
<p>Thanks for the comment about the seminar &#8211; I&#8217;ll have to improve the notes on the last few pages to help the people who have planes to catch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcdauchy</title>
		<link>http://jonathanlewis.wordpress.com/2010/05/26/visual-tuning/#comment-36460</link>
		<dc:creator><![CDATA[jcdauchy]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 08:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3815#comment-36460</guid>
		<description><![CDATA[Jonathan, what will be the time in Europe (GMT) for this appearance, don&#039;t want to miss it ?

By the way, thanks for your 2-day presentation in Paris, too bad I miss the end, I tried to solve the last pages of the presentation by myself. But I could find some important clue.. I am still a beginner !!]]></description>
		<content:encoded><![CDATA[<p>Jonathan, what will be the time in Europe (GMT) for this appearance, don&#8217;t want to miss it ?</p>
<p>By the way, thanks for your 2-day presentation in Paris, too bad I miss the end, I tried to solve the last pages of the presentation by myself. But I could find some important clue.. I am still a beginner !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
