<?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>Brent Ozar PLFsql server training | Brent Ozar PLF</title>
	<atom:link href="http://www.brentozar.com/archive/tag/sql-server-training/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brentozar.com</link>
	<description>Your technology pain-relief experts.</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:15:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SQL Server Index Tuning Tip: Identify Overlaps</title>
		<link>http://www.brentozar.com/archive/2009/07/tuning-tip-identify-overlapping-indexes/</link>
		<comments>http://www.brentozar.com/archive/2009/07/tuning-tip-identify-overlapping-indexes/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 13:30:10 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[performancetuning]]></category>
		<category><![CDATA[sql server training]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://www.brentozar.com/?p=4323</guid>
		<description><![CDATA[Sometimes less is more - and indexes are definitely one of those times.  Learn how to identify overlapping indexes and why they're so bad for performance, and learn about SQL Server 2005's new INCLUDE feature.<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
]]></description>
			<content:encoded><![CDATA[<div id="attachment_4333" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/danw/16223041/"><img class="size-thumbnail wp-image-4333" title="performance-tuning" src="http://cached.brentozar.com/wp-content/uploads/2009/07/performance-tuning-150x150.jpg" alt="Performance Tuning 101 - Add More Spoilers" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Performance Tuning 101 - Add More Spoilers</p></div>
<p>If you&#8217;ve got performance troubles with an application that stores data in SQL Server, and especially if it&#8217;s a home-grown application (not a store-bought app), you can get dramatic performance improvements simply by focusing on some basic indexing techniques.  These tips and tricks pay off more than pouring money into hardware that might look good sitting in the datacenter, but doesn&#8217;t really make the application significantly faster.</p>
<p>When I go into a shop to speed up an application I&#8217;ve never seen before, two of my favorite quick-hits are from the <a href="http://sqlserverpedia.com/wiki/Index_Related_DMV_Queries">index performance tuning queries from SQLServerPedia</a>:</p>
<ul>
<li><a href="http://sqlserverpedia.com/wiki/Find_Indexes_Not_In_Use">Find unused indexes</a> &#8211; these are indexes the SQL Server engine says it&#8217;s not using.  Unused indexes incur a speed penalty because SQL Server still has to add/update the indexes as records change, so they make writes slower.</li>
<li><a href="http://sqlserverpedia.com/wiki/Find_Missing_Indexes">Find missing indexes</a> &#8211; these are indexes SQL Server wishes it had available.</li>
</ul>
<p>I&#8217;m not going to cover those in detail this week because I&#8217;ve already recorded tutorial videos over at SQLServerPedia for those, but I do want to focus on something these queries won&#8217;t pick up.  Sometimes a table has two nearly-identical indexes, and they&#8217;re both being used for reads.  Take these two:</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span> <span style="color: #808080;">&#91;</span>IX_RunID_SiteID_DataSource_OutputType_PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ON</span> <span style="color: #808080;">&#91;</span>dbo<span style="color: #808080;">&#93;</span>.<span style="color: #808080;">&#91;</span>MyTable<span style="color: #808080;">&#93;</span>
<span style="color: #808080;">&#40;</span><span style="color: #808080;">&#91;</span>RunID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>SiteID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>DataSource<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>OutputType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>
<span style="color: #808080;">&#41;</span>
&nbsp;
<span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span> <span style="color: #808080;">&#91;</span>IX_RunID_SiteID_DataSource_OutputType_PeriodType_QuotaItemDriverID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ON</span> <span style="color: #808080;">&#91;</span>dbo<span style="color: #808080;">&#93;</span>.<span style="color: #808080;">&#91;</span>MyTable<span style="color: #808080;">&#93;</span>
<span style="color: #808080;">&#40;</span><span style="color: #808080;">&#91;</span>RunID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>SiteID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>DataSource<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>OutputType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>QuotaItemDriverID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#41;</span></pre></div></div>

<div id="attachment_4348" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/chihoonshin/3415271203/"><img class="size-full wp-image-4348" title="performance-tuning-fail-1" src="http://cached.brentozar.com/wp-content/uploads/2009/07/performance-tuning-fail-1.jpg" alt="Performance Tuning 201 - Even Wood 2x4s Can Be Spoilers" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Performance Tuning 201 - Even Wood 2x4s Can Be Spoilers</p></div>
<p>They&#8217;re two different indexes, and they&#8217;re both getting used &#8211; but does that mean we need them both?</p>
<p>They&#8217;re very nearly identical &#8211; but the second index has one extra field.  When the SQL Server engine gets a query that needs RunID, SiteID, DataSource, OutputType, and PeriodType &#8211; but not QuotaItemDriverID &#8211; then it will use the first index.  When it gets a query that needs all six fields, then it&#8217;ll use the second index.</p>
<p>In cases like this, I prefer to drop that first index and let the slightly bigger index pick up the slack.  Reading a slightly larger index will take slightly more time: if a query didn&#8217;t need that QuotaItemDriverID field, it still has to pull it off the disk in order to perform the query.  However, dropping the index pays off during inserts/updates/deletes, because it&#8217;s one less index SQL Server has to manage.  It also makes the database smaller, thereby making database maintenance tasks smaller/faster.</p>
<p>If:</p>
<ul>
<li>I have two indexes with the exact same fields in the same order, but</li>
<li>One has 1-2 extra fields, and</li>
<li>There aren&#8217;t include fields, or the include fields are the same</li>
</ul>
<p>Then I&#8217;ll drop the shorter index with extreme prejudice.</p>
<h3>When Indexes Have Include Fields</h3>
<p>If they have &#8220;include&#8221; fields, then I&#8217;ll merge the include fields between the two indexes to make one index to serve both needs.  Say we have these two indexes:</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span> <span style="color: #808080;">&#91;</span>IX_RunID_SiteID_DataSource_OutputType_PeriodType_Includes<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ON</span> <span style="color: #808080;">&#91;</span>dbo<span style="color: #808080;">&#93;</span>.<span style="color: #808080;">&#91;</span>MyTable<span style="color: #808080;">&#93;</span>
<span style="color: #808080;">&#40;</span><span style="color: #808080;">&#91;</span>RunID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>SiteID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>DataSource<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>OutputType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>
<span style="color: #808080;">&#41;</span> <span style="color: #808080;">IN</span>CLUDE <span style="color: #808080;">&#40;</span> <span style="color: #808080;">&#91;</span>YTDRevenue<span style="color: #808080;">&#93;</span>, <span style="color: #808080;">&#91;</span>MTDRevenue<span style="color: #808080;">&#93;</span> <span style="color: #808080;">&#41;</span>
&nbsp;
<span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span> <span style="color: #808080;">&#91;</span>IX_RunID_SiteID_DataSource_OutputType_PeriodType_QuotaItemDriverID_Includes<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ON</span> <span style="color: #808080;">&#91;</span>dbo<span style="color: #808080;">&#93;</span>.<span style="color: #808080;">&#91;</span>MyTable<span style="color: #808080;">&#93;</span><span style="color: #808080;">&#40;</span><span style="color: #808080;">&#91;</span>RunID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>SiteID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>DataSource<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>OutputType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>QuotaItemDriverID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#41;</span> <span style="color: #808080;">IN</span>CLUDE <span style="color: #808080;">&#40;</span> <span style="color: #808080;">&#91;</span>SalespersonID<span style="color: #808080;">&#93;</span>, <span style="color: #808080;">&#91;</span>MTDRevenue<span style="color: #808080;">&#93;</span> <span style="color: #808080;">&#41;</span></pre></div></div>

<p>The first index includes the YTDRevenue field, but the second index doesn&#8217;t.  If I just drop the first index, then queries that needed that field won&#8217;t get the full speed benefits from the second index.  To merge the two indexes, I need to drop both indexes and recreate the second one with the YTDRevenue field included, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">NONCLUSTERED</span> <span style="color: #0000FF;">INDEX</span> <span style="color: #808080;">&#91;</span>IX_RunID_SiteID_DataSource_OutputType_PeriodType_QuotaItemDriverID_Includes<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ON</span> <span style="color: #808080;">&#91;</span>dbo<span style="color: #808080;">&#93;</span>.<span style="color: #808080;">&#91;</span>MyTable<span style="color: #808080;">&#93;</span><span style="color: #808080;">&#40;</span><span style="color: #808080;">&#91;</span>RunID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>SiteID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>DataSource<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>OutputType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>PeriodType<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#91;</span>QuotaItemDriverID<span style="color: #808080;">&#93;</span> <span style="color: #0000FF;">ASC</span>,
<span style="color: #808080;">&#41;</span> <span style="color: #808080;">IN</span>CLUDE <span style="color: #808080;">&#40;</span> <span style="color: #808080;">&#91;</span>SalespersonID<span style="color: #808080;">&#93;</span>, <span style="color: #808080;">&#91;</span>MTDRevenue<span style="color: #808080;">&#93;</span>, <span style="color: #808080;">&#91;</span>YTDRevenue<span style="color: #808080;">&#93;</span> <span style="color: #808080;">&#41;</span></pre></div></div>

<p>In this example, I tacked the YTDRevenue field on to the end of the include field list.  The order of the included fields doesn&#8217;t matter, since SQL Server doesn&#8217;t sort by those.</p>
<div id="attachment_4350" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/mountain_man_ny_2/2869673169/"><img class="size-thumbnail wp-image-4350" title="amc-bmw" src="http://cached.brentozar.com/wp-content/uploads/2009/07/amc-bmw-150x150.jpg" alt="Performance Tuning 301 - Beauty Just Adds Weight" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Performance Tuning 301 - Beauty Just Adds Weight</p></div>
<h3>Things to Watch Out For</h3>
<p>In my examples, I kept things simple by omitting all of the extra indexing options like partitioning and sorting in TempDB.  When doing index tuning in real life, though, you&#8217;ll want to check those options to make sure they&#8217;re consistent from index to index.</p>
<p>Field order matters in indexes; if two indexes have the same fields but in different order, that doesn&#8217;t mean you can drop one of them.</p>
<p>Ideally, after making index changes, we would restart the SQL Server instance to reset the DMV counters that monitor index use.  In reality, though, that&#8217;s not so easy to pull off, so we need to log our changes to understand what the changes have been.  After making index changes, log the changes somewhere.  I keep the output of the <a href="http://sqlserverpedia.com/wiki/Index_Related_DMV_Queries">index performance tuning DMV queries</a> in Excel spreadsheets because it&#8217;s easier to email those back and forth from machine to machine, especially when I&#8217;m consulting.  The next time you do index performance tuning on the same database, you can use the historical spreadsheets to determine whether or not your changes worked the way you&#8217;d planned.</p>
<div id="attachment_3316" class="wp-caption alignleft" style="width: 310px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: left;"><a href="http://www.amazon.com/gp/product/1430219025?ie=UTF8&amp;tag=brozsqseex-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430219025"><img class="size-medium wp-image-3316" title="sql-server-2008-query-performance-tuning-distilled" src="http://d2me0cejidzvf9.cloudfront.net/wp-content/uploads/2009/04/sql-server-2008-query-performance-tuning-distilled-300x225.jpg" alt="SQL Server 2008 Query Performance Tuning Distilled" width="300" height="225" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">SQL Server 2008 Query Performance Tuning Distilled</p></div>
<h3>Learn More About SQL Server Index Tuning</h3>
<p>I really like <a href="http://www.amazon.com/gp/product/1430219025?ie=UTF8&amp;tag=brozsqseex-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430219025">Grant Fritchey&#8217;s book SQL Server 2008 Query Performance Tuning Distilled</a>, and I wrote a <a href="http://www.brentozar.com/archive/2009/04/book-review-sql-server-2008-query-performance-tuning-distilled/">book review about it</a>.  I can&#8217;t recommend it highly enough, and I&#8217;d start there.</p>
<p>If you don&#8217;t have the patience to wait for a book, here&#8217;s a few more blog posts about performance tuning:</p>
<p><a href="/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/">Performance Tuning with Perfmon</a> &#8211; how to set up Perfmon, what SQL Server Perfmon counters to track what the indicators mean.</p>
<p><a href="http://sqlserverpedia.com/blog/analysis-services/sql-server-data-mining-in-the-cloud/" target="_blank">Data Mining Your SQL Server Perfmon Counters</a> &#8211; want to take your Performance Monitor statistics to a new level?  I wrote an article on SQLServerPedia explaining how to use Microsoft&#8217;s free Table Analysis Tools for the Cloud plugins to dive deeply into your data.</p>
<p><a href="/archive/2006/04/sql-server-training-for-developers-primary-keys-indexes/">Primary Keys and Indexes</a> &#8211; I explain the concepts behind keys and indexes using phone books as an example.  Indexes have huge impacts on performance, and if you master these you can make your server go a whole lot faster without spending more money.</p>
<p><a href="http://www.brentozar.com/archive/2008/03/sql-server-2005-setup-checklist-part-1-before-the-install/">SQL Server 2005 Setup Checklist</a> &#8211; some simple configuration tweaks can get you 20-30% performance increases right from the start without spending any extra money.</p>
<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
<div class="wp-about-author-containter-top" style="background-color:#FFEAA8;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/77f776c2eaf0cc691e8a0880bb8a191f?s=100&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=R' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://www.brentozar.com/archive/author/BrentO/' title='Brent Ozar'>Brent Ozar</a></h3><p>Brent specializes in performance tuning for SQL Server, VMware, and storage.  He's one of the very few Microsoft Certified Masters of SQL Server, a published author, and a Microsoft MVP.  He likes travel, Jeeps, Apple gear, jokes, and writing about himself in the third person.  <a href="http://www.brentozar.com/consultants/brent-ozar/">Read more and contact Brent</a>.</p><p><a href='http://www.brentozar.com' title='Brent Ozar'>Website</a> - <a href='http://twitter.com/brento' title='Brent Ozaron Twitter'>Twitter</a> - <a href='http://www.facebook.com/brentozar' title='Brent Ozar on Facebook'>Facebook</a> - <a href='http://www.brentozar.com/archive/author/BrentO/' title='More posts by Brent Ozar'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.brentozar.com/archive/2009/07/tuning-tip-identify-overlapping-indexes/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>SAN Multipathing Part 2: What Multipathing Does</title>
		<link>http://www.brentozar.com/archive/2009/05/san-multipathing-part-2-what-multipathing-does/</link>
		<comments>http://www.brentozar.com/archive/2009/05/san-multipathing-part-2-what-multipathing-does/#comments</comments>
		<pubDate>Mon, 18 May 2009 15:00:49 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[multipathing]]></category>
		<category><![CDATA[performancetuning]]></category>
		<category><![CDATA[san]]></category>
		<category><![CDATA[sql server training]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.brentozar.com/?p=3923</guid>
		<description><![CDATA[Storage Area Networks (SANs) can do multipathing, but what does that really mean?  I explain the differences between failover and performance load balancing, and talk about why active/active multipathing isn't what it seems.<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://www.brentozar.com/archive/2009/05/san-multipathing-part-1-what-are-paths/">Part 1 of my multipathing series, I talked about what paths are</a>, and today I&#8217;m going to be talking about multipathing.  SAN multipathing software has two goals, in this order:</p>
<ol>
<li>Protection</li>
<li>Performance</li>
</ol>
<h3>Using SAN Multipathing for Failover Protection</h3>
<div id="attachment_3947" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/vespa_gt/278338992/"><img class="size-thumbnail wp-image-3947" title="network-cables" src="http://cached.brentozar.com/wp-content/uploads/2009/05/network-cables-150x150.jpg" alt="What Could Go Wrong?" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">What Could Go Wrong?</p></div>
<p>Your server absolutely, positively has to be able to access its drives at all times.  When servers can&#8217;t access their hard drives, horrendous things happen.  When hard drives were directly attached to servers, this wasn&#8217;t a big risk, but storage area networks bring in a lot of risky factors.  Cables get unplugged or get bent beyond repair.  Switches fail.  Network configurations don&#8217;t go according to plan.</p>
<p>(Side note: I think this was one of the biggest reasons SAN administrators didn&#8217;t want to go to iSCSI.  They saw how our network cables looked, and they didn&#8217;t want their precious fiberoptic cables getting that same treatment.)</p>
<p>Multipathing software mitigates this risk by enabling the SAN admin to set up multiple routes between a server and its drives.  The multipathing software handles all IO requests, passes them through the best possible path, and takes care of business if one of the paths dies.</p>
<p>In the event of a problem like an unplugged cable, the multipathing software will sense that IO has taken too long, then reset the connections and pass the request over an alternate path.  The application (like SQL Server) won&#8217;t know anything went wrong, but the IO request will take longer than usual to perform.  Sometimes in SQL Server, this shows up as an application-level alert that IO has taken more than 15 seconds to complete.</p>
<p>To make this work, SAN administrators build in redundancy at every possible layer of the SAN infrastructure &#8211; multiple HBAs, multiple switch networks, multiple connections from the controllers, and so forth.  But most of the time, all this extra connectivity sits around idle.  It&#8217;s designed to be used for protection, but not necessarily performance: it&#8217;s active/passive gear where only one thing is active at a given time.   The secondary goal of multipathing is performance, but it&#8217;s a far, far second.  SAN administrators are so conservative, they make database administrators look like gambling addicts.  They&#8217;re perfectly comfortable leaving half or more of the infrastructure completely unused.</p>
<h3>Do We Really Need More Bandwidth?</h3>
<p>Depending on the SAN infrastructure, the theoretical speed limits are around:</p>
<ul>
<li>1GB Fibre Channel or iSCSI &#8211; around 125 MBs/second (this is the most commonly deployed iSCSI speed)</li>
<li>2GB Fibre Channel &#8211; around 250 MBs/second</li>
<li>4GB Fibre Channel &#8211; around 500 MBs/second (this is the most commonly deployed FC SAN speed)</li>
<li>10GB iSCSI &#8211; around 1250 MBs/second</li>
</ul>
<p>These limits were fine ten or fifteen years ago when hard drives weren&#8217;t all that fast, but here&#8217;s some sample read speeds from today&#8217;s desktop-class SATA drives:</p>
<ul>
<li>One drive &#8211; around 130 MBs/second (from <a href="http://www.tomshardware.com/reviews/2tb-hdd-caviar,2261-7.html">TomsHardware reviews</a>)</li>
<li>RAID 5 array of five drives &#8211; around 300 MBs/second (from my home lab)</li>
</ul>
<p>Forget 15k drives or solid state drives &#8211; even just with today&#8217;s SATA drives, 4GB Fibre Channel can get saturated fairly quickly during large sequential read operations, like SQL Server backups or huge table scans on data warehouses.  Sadly, I see so many cases where the IT staff bought a SAN with dozens or hundreds of hard drives, hooked it up to a server with just two 4GB fiberoptic connections, and they can&#8217;t understand why their storage isn&#8217;t much faster than it was with local disks.  Even if they get savvy to the basics of multipathing and try connecting more 4GB HBAs, their storage speed doesn&#8217;t necessarily increase.</p>
<h3>Enter Active/Active Multipathing</h3>
<p>Active/active multipathing is the ability to configure a server with multiple paths to the storage and simultaneously use all of them to get more storage bandwidth.  This type of multipathing software is usually sold by the SAN vendor, not a third party, because it&#8217;s a lot more complicated than it looks at first glance.  Talk to your SAN vendor and ask how much their active/active multipathing software costs, and what it&#8217;s compatible with.  <a href="http://www.emc.com/products/detail/software/powerpath-multipathing.htm">EMC&#8217;s PowerPath</a> even works with gear from multiple vendors.</p>
<p>But before you plunk down a lot of hard-earned cash &#8211; well, it&#8217;s not that hard-earned for storage administrators, but I&#8217;m talking to database administrators here &#8211; you need to ask one very important question: what exactly does this software mean by active/active?  In your feeble mind, you probably believe that you can have one array, accessed by one server, and spread the load evenly over two or more Host Bus Adapters.  Not so fast &#8211; some vendors define active/active as:</p>
<ul>
<li><strong>Only one path can be active per array at a given time.</strong> If you have four HBAs, you&#8217;ll need four arrays in the SAN, and SQL Server will need to spread the data across all four arrays.  This means designing your database filegroups and files specifically for the number of HBAs in use on your server.</li>
<li><strong>All paths work for sending data, but only one can receive.</strong> I&#8217;ve seen this in iSCSI active/active multipathing solutions.  For SQL Server, this means you can insert/update/delete/bulk-load data at breakneck speeds, but your selects still crawl.</li>
<li><strong>Active/active works, but failover sticks.</strong> Say you have two paths to your data, and one of the paths goes bad for some reason.  All traffic fails over to the alternate path.  When the bad path comes back up (like the cable is plugged back in, the power comes back on, the port is replaced, etc) traffic doesn&#8217;t automatically balance back out.  It stays on the single path.  The only way to find this out is with expensive SAN-monitoring software or by browsing through SAN configuration screens periodically.</li>
</ul>
<p>For virtual servers, I&#8217;ve got bad more news: the only true active/active SAN multipathing today is in VMware vSphere 4.0 with EMC PowerPath.  <a href="http://blog.fosketts.net/2009/04/21/storage-vmware-vsphere-4/">Stephen Fosketts explains the storage changes in vSphere</a>.  If you&#8217;re on VMware v3.5 or prior, on Windows Hyper-V, or on vSphere 4.0&#8242;s lower licensing tiers, you&#8217;re stuck with one HBA of throughput per server per LUN (array).  This is one reason why you might not want to virtualize your high-end SQL Servers yet: they don&#8217;t get quite the same level of throughput that you can get on physical hardware.  Don&#8217;t let that scare you off virtualization, though &#8211; remember, you&#8217;re probably reading this article because you don&#8217;t have true active/active multipathing set up on your physical SQL Servers, either.</p>
<p>There&#8217;s a lot of catches here, and the SAN salespeople are always going to smile and nod and say, &#8220;Oh yeah, ours does that.  That&#8217;s good, right?&#8221;  It&#8217;s up to you: you have to ask questions and test, test, test.  Get a time-limited evaluation copy of their multipathing software and <a href="http://sqlserverpedia.com/blog/sql-server-performance-tuning/sqlio-tutorial/">test your SAN performance with SQLIO, as I explain over at SQLServerPedia</a>.  It&#8217;s the only way to know for sure that you&#8217;re getting the most out of your storage investment.</p>
<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
<div class="wp-about-author-containter-top" style="background-color:#FFEAA8;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/77f776c2eaf0cc691e8a0880bb8a191f?s=100&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=R' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://www.brentozar.com/archive/author/BrentO/' title='Brent Ozar'>Brent Ozar</a></h3><p>Brent specializes in performance tuning for SQL Server, VMware, and storage.  He's one of the very few Microsoft Certified Masters of SQL Server, a published author, and a Microsoft MVP.  He likes travel, Jeeps, Apple gear, jokes, and writing about himself in the third person.  <a href="http://www.brentozar.com/consultants/brent-ozar/">Read more and contact Brent</a>.</p><p><a href='http://www.brentozar.com' title='Brent Ozar'>Website</a> - <a href='http://twitter.com/brento' title='Brent Ozaron Twitter'>Twitter</a> - <a href='http://www.facebook.com/brentozar' title='Brent Ozar on Facebook'>Facebook</a> - <a href='http://www.brentozar.com/archive/author/BrentO/' title='More posts by Brent Ozar'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.brentozar.com/archive/2009/05/san-multipathing-part-2-what-multipathing-does/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SAN Multipathing Part 1: What are Paths?</title>
		<link>http://www.brentozar.com/archive/2009/05/san-multipathing-part-1-what-are-paths/</link>
		<comments>http://www.brentozar.com/archive/2009/05/san-multipathing-part-1-what-are-paths/#comments</comments>
		<pubDate>Sun, 17 May 2009 12:00:23 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[multipathing]]></category>
		<category><![CDATA[san]]></category>
		<category><![CDATA[sql server training]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.brentozar.com/?p=3910</guid>
		<description><![CDATA[In the beginning, God made drives directly attached to our computers.  Over time, man decided to get jiggy with it and use Storage Area Networks.  Learn why pathing is so important to these two systems.<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
]]></description>
			<content:encoded><![CDATA[<p>In the beginning, computer makers created servers with hard drive bays built in.  And it was good.</p>
<div id="attachment_3911" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/newmediarchitect/337930184/"><img class="size-thumbnail wp-image-3911" title="hard-drives" src="http://cached.brentozar.com/wp-content/uploads/2009/05/hard-drives-150x150.jpg" alt="Server with Built-In Hard Drives" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Server with Built-In Hard Drives</p></div>
<p>Built-in drive bays are easy to manage: when you need more storage, you just plug in another hard drive.  You don&#8217;t have to fork out a lot of money or make room &#8211; the server already has the drive bays built in.  It&#8217;s so easy, a developer could do it.</p>
<p>Built-in drives are reliable because they&#8217;re directly connected inside a server with just a few wires.  People aren&#8217;t going to walk past the server and nudge the cables loose.  As long as the server has power, the drives have power, so admins aren&#8217;t worried about drives suddenly going offline while the server is up.</p>
<p>They also have drawbacks: when you run out of drive bays, you run out of options.  If you have extra drive bays in the server next door, you can&#8217;t cable them together and use the extra bays.  And perhaps worst of all, when you buy a server, you have to be pretty confident that you&#8217;re buying one with the right number of drive bays &#8211; not too many, because bigger servers cost money, and not too few since it&#8217;s not easy to add more later.</p>
<div id="attachment_3912" class="wp-caption alignleft" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: left;"><a href="http://www.flickr.com/photos/djidjiperroto/2440680010/"><img class="size-thumbnail wp-image-3912" title="promise" src="http://cached.brentozar.com/wp-content/uploads/2009/05/promise-150x150.jpg" alt="Expansion Chassis" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Direct Attached Storage</p></div>
<p>Later, computer makers designed Direct Attached Storage: shelves of drives that could be attached directly to a server.  One of these DAS units could hold a dozen or more drives, thereby giving the sysadmins more storage capacity for a server.  They are cheaper than buying a new server.</p>
<p>They introduced two reliability risks: the DAS&#8217;s power supply could fail, thereby taking the drives offline, or the connection between the DAS and the server could be tugged loose.  Hardware makers mitigated the risks by adding redundant power supplies on enterprise-class models, and they&#8217;ve started taking steps to reduce the risk of SAS/SATA connectivity problems.</p>
<p>Direct Attached Storage units usually dedicated to a single server, which means that even if you only need one or two additional drives, you still have to buy a whole 12-bay chassis.  The extra bays sit around unused, wasting space in the datacenter.</p>
<div id="attachment_3916" class="wp-caption alignright" style="width: 160px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://www.flickr.com/photos/tophost/2247031208/"><img class="size-thumbnail wp-image-3916" title="san-front" src="http://cached.brentozar.com/wp-content/uploads/2009/05/san-front-150x150.jpg" alt="SAN - Front Side" width="150" height="150" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">SAN - Front Side</p></div>
<h3>The Solution: Storage Area Networks</h3>
<p>Storage Area Networks (or SANs) put a full-blown network between the servers and the drives.  SANs consist of a few parts:</p>
<ul>
<li>Drives (hard drives or solid state drives)</li>
<li>Drive enclosures (shelves with space for a dozen or more drives)</li>
<li>Controllers (kinda like computers that connect to the drives, and have network ports)</li>
<li>Network switches (could be fiberoptic networks or conventional Ethernet)</li>
<li>Host Bus Adapters (the fancy-pants SAN name for network cards that plug into your server, thereby connecting your servers to your drives)</li>
</ul>
<p>Suddenly, this picture starts to get kinda complicated.  There&#8217;s a lot of parts here connected to other parts with a lot of cables.  Servers really need to see their hard drives at all times, so what do engineers do?  They build in redundancy: each part has backups, and backup ways to connect to other parts.</p>
<p>In the picture above, we&#8217;re showing just two parts of the SAN.  The top big black box is a single controller, and there&#8217;s two drive enclosures underneath it.  In the SAN world, this is a really basic SAN, and SAN administrators would say it&#8217;s not really redundant.  The rest of us would be stunned at how much redundancy is already included, though &#8211; check out a picture of the back side of that controller and just one of the drive enclosures.</p>
<div id="attachment_3921" class="wp-caption alignleft" style="width: 310px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: left;"><a href="http://www.flickr.com/photos/tophost/2246209421/in/set-72157603860621876/"><img class="size-full wp-image-3921" title="san-back2" src="http://cached.brentozar.com/wp-content/uploads/2009/05/san-back2.jpg" alt="SAN Back" width="300" height="193" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">SAN Back</p></div>
<p>This picture shows two units: the top half is a controller, and the bottom half is one drive enclosure.  The connections are:</p>
<p>A &#8211; One pair of fiberoptic cables that connect to a SAN network switch.</p>
<p>B &#8211; One pair of fiberoptic cables that start a loop down to the drive enclosures.</p>
<p>C &#8211; Another pair of fiberoptic cables that represent the other side of that loop started by B.</p>
<p>D, E, F &#8211; pairs of fiberoptic cables that run up to B/C above and to the other drive units.</p>
<p>At any time, the SAN admin can walk to the back of the rack, pull one pair of the B/C/D/E/F cables out that carry communication between the controller and the drive enclosures, and business will keep right on truckin&#8217;.  In fact, if the SAN has been set up according to best practices, the admin can probably pull more than one cable without taking the system down.</p>
<h3>SANs Have Multiple Paths to Access Data</h3>
<p>A common misperception is that SAN admins sleep so well at night because their pillows are stuffed with money.  While SAN admins do make a fortune, the sad fact is that money-stuffed pillows are surprisingly lumpy and noisy.</p>
<p>Instead, the reason SAN admins sleep so well is because the SAN has so many paths between each server and its drives, and a single failure just won&#8217;t stop the SAN.  Furthermore, most production SANs have multiple controllers, multiple network switches, and beyond that, two or more completely separate networks (called fabrics).  If all hell breaks loose and one defective network switch goes down or broadcasts garbage, there&#8217;s a totally independent network that stays up.</p>
<p>If this was your home network, it would be like having a cable modem and a DSL modem, with two separate routers.  Your home computer would have two separate network cards, each with a different TCP/IP address, connected to the two different routers.  If any one component failed, you could still continue to watch your mission-critical &#8220;adult material&#8221; without interruption.</p>
<p>Or could you?</p>
<p>In the event of a real failure, like if you were watching Hulu over your cable modem and it started to go down, odds are your movie would start to stutter and cut out.  The traffic wouldn&#8217;t be automatically and instantaneously switched over to the DSL modem.  You would probably have to do something manually, or heaven forbid, reload the movie again.  That doesn&#8217;t cut it for, say, a SQL Server trying to access its data files over the SAN: it simply can&#8217;t go down.</p>
<p>This is where SAN multipathing comes in: it needs to know what paths are available, what paths are not working well, and proactively route traffic over the best possible path.  In the next part of my series tomorrow, I&#8217;ll talk about the basics of multipathing, and then talk about the differences between Fibre Channel, iSCSI, and virtualization multipathing.</p>
<h3><a href="http://www.brentozar.com/archive/2009/05/san-multipathing-part-2-what-multipathing-does/">Continue to SAN Multipathing Part 2</a></h3>
<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
<div class="wp-about-author-containter-top" style="background-color:#FFEAA8;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/77f776c2eaf0cc691e8a0880bb8a191f?s=100&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=R' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://www.brentozar.com/archive/author/BrentO/' title='Brent Ozar'>Brent Ozar</a></h3><p>Brent specializes in performance tuning for SQL Server, VMware, and storage.  He's one of the very few Microsoft Certified Masters of SQL Server, a published author, and a Microsoft MVP.  He likes travel, Jeeps, Apple gear, jokes, and writing about himself in the third person.  <a href="http://www.brentozar.com/consultants/brent-ozar/">Read more and contact Brent</a>.</p><p><a href='http://www.brentozar.com' title='Brent Ozar'>Website</a> - <a href='http://twitter.com/brento' title='Brent Ozaron Twitter'>Twitter</a> - <a href='http://www.facebook.com/brentozar' title='Brent Ozar on Facebook'>Facebook</a> - <a href='http://www.brentozar.com/archive/author/BrentO/' title='More posts by Brent Ozar'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.brentozar.com/archive/2009/05/san-multipathing-part-1-what-are-paths/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SQL Server Inventory Checklist</title>
		<link>http://www.brentozar.com/archive/2009/05/sql-server-inventory-checklist/</link>
		<comments>http://www.brentozar.com/archive/2009/05/sql-server-inventory-checklist/#comments</comments>
		<pubDate>Fri, 15 May 2009 15:04:35 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[sql server training]]></category>

		<guid isPermaLink="false">http://www.brentozar.com/?p=3904</guid>
		<description><![CDATA[Richard Jones, a DBA in the UK, asked in with a question, and rather than giving my own opinion, I thought it&#8217;d be better to ask it here to get everybody&#8217;s opinion in the comments: The DB team that I am a member of are about to take control of a number of SQL Server...<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
]]></description>
			<content:encoded><![CDATA[<p>Richard Jones, a DBA in the UK, asked in with a question, and rather than giving my own opinion, I thought it&#8217;d be better to ask it here to get everybody&#8217;s opinion in the comments:</p>
<p><em>The DB team that I am a member of are about to take control of a number of SQL Server boxes from the Apps Support team (don&#8217;t ask why they&#8217;ve got control of them in the first place, ok).  I&#8217;m trying to put together a checklist of things we need to get out of them during the handover and was wondering if you had any ideas of what I might have missed from my initial thoughts??  So far I have:<br />
</em></p>
<ul>
<li><em>Usernames/schemas and passwords</em></li>
<li><em>Instance/Server names and whether it&#8217;s Dev/Test or Prod</em></li>
<li><em>Number of users each box has (roughly)</em></li>
<li><em>What App runs on each box and the criticality of it</em></li>
<li><em>Backup schedules/maintenance plans/scheduled jobs</em>
<ul>
<li><em>Tape or disk</em></li>
<li><em>Full/incremental</em></li>
<li><em>Transaction log backups</em></li>
<li><em>Recovery mode</em></li>
</ul>
</li>
<li><em>3rd party contact details for support where applicable</em></li>
</ul>
<p>What else would you add?</p>
<p>...<br /><i>Upcoming free webcasts: <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=663314175">SQL and SSDs: A Valentine's Day Love Story</a> and <a href="https://brentozarevents.webex.com/brentozarevents/onstage/g.php?t=a&d=664876357">Anatomy of the SQL Server Log File</a></i>.</p>
<div class="wp-about-author-containter-top" style="background-color:#FFEAA8;"><div class="wp-about-author-pic"><img alt='' src='http://1.gravatar.com/avatar/77f776c2eaf0cc691e8a0880bb8a191f?s=100&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=R' class='avatar avatar-100 photo' height='100' width='100' /></div><div class="wp-about-author-text"><h3><a href='http://www.brentozar.com/archive/author/BrentO/' title='Brent Ozar'>Brent Ozar</a></h3><p>Brent specializes in performance tuning for SQL Server, VMware, and storage.  He's one of the very few Microsoft Certified Masters of SQL Server, a published author, and a Microsoft MVP.  He likes travel, Jeeps, Apple gear, jokes, and writing about himself in the third person.  <a href="http://www.brentozar.com/consultants/brent-ozar/">Read more and contact Brent</a>.</p><p><a href='http://www.brentozar.com' title='Brent Ozar'>Website</a> - <a href='http://twitter.com/brento' title='Brent Ozaron Twitter'>Twitter</a> - <a href='http://www.facebook.com/brentozar' title='Brent Ozar on Facebook'>Facebook</a> - <a href='http://www.brentozar.com/archive/author/BrentO/' title='More posts by Brent Ozar'>More Posts</a> </p></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.brentozar.com/archive/2009/05/sql-server-inventory-checklist/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 1069/1110 objects using disk: basic

Served from: www.brentozar.com @ 2012-02-08 17:42:37 -->
