<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SQL Server Blog by Jason Massie</title>
	
	<link>http://blog.statisticsio.com</link>
	<description>Performance, Databases, Clouds, Bad Humor</description>
	<pubDate>Fri, 19 Jun 2009 13:05:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>32.846645</geo:lat><geo:long>-96.967337</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/statisticsio" type="application/rss+xml" /><feedburner:emailServiceId>statisticsio</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Clustering vs. Mirroring</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/x5zx3ZqEegQ/</link>
		<comments>http://blog.statisticsio.com/archive/2009/06/clustering-vs-mirroring/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 12:28:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[HA]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://blog.statisticsio.com/archive/2009/06/clustering-vs-mirroring/</guid>
		<description><![CDATA[This by no means the definitive writing on this topic but I am going to cover the key points that I look at when considering an application that has to remain highly available. We will talk about how much bling you can drop, how much gofast® you need and how much RetardStrength© it takes to [...]]]></description>
			<content:encoded><![CDATA[<p>This by no means the definitive writing on this topic but I am going to cover the key points that I look at when considering an application that has to remain highly available. We will talk about how much bling you can drop, how much gofast® you need and how much RetardStrength© it takes to set up and administer.</p>
<p>First, you need to answer these questions.</p>
<ul>
<li>Do I need to protect against multiple disk failures and\or physical corruption?
<ul>
<li>Yes, mirroring is the answer</li>
<li>No, clustering is still an option</li>
</ul>
</li>
<li>Is higher availability more important that a slight hit on write performance?
<ul>
<li>Yes, mirroring wins</li>
<li>No, clustering wins</li>
</ul>
</li>
<li>Will I have more than 10 or so databases?
<ul>
<li>Yes, clustering wins but the number is being pushed with newer hardware.</li>
<li>No, mirroring is a good choice.</li>
</ul>
</li>
<li>Do you want the least amount of administrative overhead?
<ul>
<li>Yes, clustering is the way to go. (Opinion)</li>
<li>No, I have have a skilled DBA.</li>
</ul>
</li>
</ul>
<p>So let’s look at each point in a little more detail.</p>
<p><strong>Multiple disk failure and corruption</strong></p>
<p>This never happens, right? Well, I lost 24 hours of my life restoring our corporate NT4 Exchange 5.5 server after two disks in a RAID5 set failed. It does and can happen. Anyone remember the PAE bug that caused corruption? Nasty stuff. However, it should not happen often. That risk might be an acceptable provided that you are looking for the additional benefits that clustering provides like ease of administration(opinion) and less disk costs.</p>
<p><strong>High Availability</strong></p>
<p>In this post, I am talking strictly synchronous mirroring with a witness. This can provide failover as little as a second or so. If you app is coded right, this looks like nothing but a lag as far as the end user is concerned. On clustering, it is a 30 second + failover, transactions are rolled back and the clients have to log back in. The end users know something crapped out big time. On the other hand with mirroring, every transaction takes a couple to a few hundred milliseconds longer. You have to do some soul searching and decide if HA or TPS is the most important KPI, IMHO. <img src='http://blog.statisticsio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Number of databases</strong></p>
<p>The most important factor is 1 or greater than 1 databases. You see, in a cluster, the instance fails over. Mirror is grouped by the database. If the databases have dependencies between them and one fails over, your app is broken. There are ways around this and it should not be too common but it is possible.</p>
<p>The next factor is the theoretical number of 10. This was used as a guideline with the release of SQL Server 2005. However, with the new processors, DDR3 and more SAN cache, I suspect that this is higher now.</p>
<p><strong>Administrative Overhead</strong></p>
<p>I submit to you my humble opinion that it is harder to manage a mirror than a cluster especially for the accidental DBA. Once a cluster is setup, it is mostly just Windows administration. The app, SQL Server, and the developer can mostly be oblivious to the fact that it is on a cluster. Sure, if things go south, they go bad. However, it could be argued that this is not a job for the DBA. Even if you call CSS, you are not talking to the SQL team.</p>
<p>Mirroring, on the other hand, requires attention from a DBA to make sure jobs, logins and other app dependant items not stored in the database are maintained on both servers. The DBA needs to be able to troubleshoot connectivity, backup\restore and periods of high logging clogging the pipes.</p>
<p><strong>What about Mirroring and Clustering together?</strong></p>
<p>That is the next post.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=x5zx3ZqEegQ:63JZCO8VKJo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=x5zx3ZqEegQ:63JZCO8VKJo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=x5zx3ZqEegQ:63JZCO8VKJo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=x5zx3ZqEegQ:63JZCO8VKJo:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/x5zx3ZqEegQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/06/clustering-vs-mirroring/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/06/clustering-vs-mirroring/</feedburner:origLink></item>
		<item>
		<title>Speaking at SQL PASS Community Summit 2009</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/gPjK1dNNE4o/</link>
		<comments>http://blog.statisticsio.com/archive/2009/06/speaking-at-sql-pass-community-summit-2009/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 13:28:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[social computing]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">http://blog.statisticsio.com/?p=676</guid>
		<description><![CDATA[Wooohooo! Brent Ozar and I  are delivering a session at PASS this year. It is entitled “Social Computing for  the Database Professional” in the Professional Development track.
What is cool is the fact that Brent and I have never actually met. We have  become friends(or at least frienemies) online via the social networks.
Here [...]]]></description>
			<content:encoded><![CDATA[<p>Wooohooo! <a href="http://brentozar.com/" target="_blank">Brent Ozar</a> and I  are delivering a session at PASS this year. It is entitled “Social Computing for  the Database Professional” in the Professional Development track.</p>
<p>What is cool is the fact that Brent and I have never actually met. We have  become friends(or at least frienemies) online via the social networks.</p>
<p>Here is the abstract.</p>
<p><strong>Abstract Description :</strong><br />
Until a few years ago, the online  SQL Server community consisted of Usenet newsgroups, mailing lists and forums.  Conversations were mostly, I have a problem and Here is the fix. The landscape  has changed drastically, but Database Professionals, conservative by nature, can  sometimes to be slow to adopt new technologies. In this session, you will learn  what new services are available, how to leverage them to build your professional  network, get involved in the SQL community and, most importantly, do your job  better. We will focus on the mainstay services of the forward thinking IT  professional but will also give you a glimpse of the bleeding edge. We will also  show you ways to connect SQL Server to this community for data mining, alerting  and other creative uses. When you&#8217;ve got these tools and you announce that &#8220;I  have a problem,&#8221; the conversation becomes a real-time team event with some of  the best SQL Server minds in the community ready to help you tackle the problem.  Be prepared for an interactive session that will involve the worldwide online  SQL Server community in real time. We won&#8217;t just tell stories about how social  networking helped us do our jobs better - we&#8217;ll show how it works in real time.  We&#8217;ll show you how database professionals all over the world are staying in  touch with the PASS Summit even as we&#8217;re presenting.</p>
<p><strong>Abstract Goals 1 :</strong><br />
Teach attendees about social Internet  services that will allow them to build your professional network, get involved  in the SQL community and, most importantly, do your job better.</p>
<p><strong>Abstract Goals 2 :</strong><br />
Engage the SQL Server community  worldwide interactively during this session.</p>
<p><strong>Abstract Goals 3 :</strong><br />
Demonstrate how to creatively  integrate these services within SQL Server.</p>
<p><strong>Category :</strong><br />
Community Session (75 mins)</p>
<p><strong>Abstract Prerequisites :</strong><br />
Internet Experience and TSQL  knowledge.</p>
<p><strong>Real Examples :</strong><br />
Yes</p>
<p><strong>Was this abstract previously delivered?</strong><br />
No</p>
<p><strong>Level :</strong><br />
Novice</p>
<p><strong>Live Demos :</strong><br />
Yes</p>
<p><strong>Demo Percent :</strong><br />
95%</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gPjK1dNNE4o:aEDVAPwZkLs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gPjK1dNNE4o:aEDVAPwZkLs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gPjK1dNNE4o:aEDVAPwZkLs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gPjK1dNNE4o:aEDVAPwZkLs:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/gPjK1dNNE4o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/06/speaking-at-sql-pass-community-summit-2009/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/06/speaking-at-sql-pass-community-summit-2009/</feedburner:origLink></item>
		<item>
		<title>Here on Gilligan’s Isle!</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/h4fr_ZFQXYU/</link>
		<comments>http://blog.statisticsio.com/archive/2009/06/here-on-gilligans-isle/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 02:21:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[meme]]></category>

		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[powershell]]></category>

		<category><![CDATA[RDMS]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[sqlps]]></category>

		<guid isPermaLink="false">http://blog.statisticsio.com/archive/2009/06/here-on-gilligans-isle/</guid>
		<description><![CDATA[Tim Ford(WWW, Twitter) tagged me. This meme is all about what you would do if you were trapped on a deserted island with nothing but a laptop and aircard. Here is an excerpt:
So You’re On A Deserted Island With WiFi and you’re still on the clock at work.  Okay, so not a very good situational [...]]]></description>
			<content:encoded><![CDATA[<p>Tim Ford(<a href="http://www.ford-it.com/sqlagentman/" target="_blank">WWW</a>, <a href="http://twitter.com/sqlagentman" target="_blank">Twitter</a>) <a href="http://www.ford-it.com/sqlagentman/?p=268" target="_blank">tagged me</a>. This meme is all about what you would do if you were trapped on a deserted island with nothing but a laptop and aircard. Here is an excerpt:</p>
<blockquote><p>So You’re On A Deserted Island With WiFi and you’re still on the clock at work.  Okay, so not a very good situational exercise here, but let’s roll with it; we’ll call it a <em>virtual</em> deserted island.  Perhaps what I should simply ask is if you had a month without any walk-up work, no projects due, no performance issues that require you to devote time from anything other than a wishlist of items you’ve been wanting to get accomplished at work but keep getting pulled away from I ask this question: what would be the top items that would get your attention?</p></blockquote>
<p>Well, first I would have to set camp, kill <a href="http://en.wikipedia.org/wiki/Others_(Lost)" target="_blank">The Others</a>, and salvage the wreckage of <a href="http://en.wikipedia.org/wiki/Oceanic_Flight_815" target="_blank">Oceanic Flight 815</a>. But after I would ferment coconut juice so I could have drinks on the beach. Priorities, right?</p>
<p>So after a couple of months of drinking, surfing(waves and <a href="http://en.wikipedia.org/wiki/Leet#Pr0n" target="_blank">pr0n</a>), fishing, and basically being an all around  beachbum I would do this:</p>
<p><strong>Study up for the Oracle Certified Professional exams.</strong></p>
<p>I should be doing this now but I have trouble finding time and motivation. I have the books, study material, and an Oracle lab environment in <a href="http://theenterprisecloud.com" target="_blank">the cloud</a>. I have been pondering why I find it easier to put my head down and learn the new versions of SQL Server but procrastinate on Oracle. I have come to the conclusion that it is the fact that I do not use books with SQL Server. I usually learn all of the new engine feature before any books are written. I guess I just need to get more hands on with Oracle.</p>
<p><strong>Design a set of default policies for new SQL Server 2008 installations.</strong></p>
<p>In SQL Server 2008, we have policy based management. I want a set of default policies that guide people into best practices. For example, preventing a new database from being created with 1MB autogrow. The policies should mostly cover server and database settings. Schema oriented policies could vary between dev teams and should be handled by them.</p>
<p><strong>Powershell as my default administration method.</strong></p>
<p>I got into a powershell kick for a while but I lost interest. I need to give up the whatever GUI and do all administration through powershell. That is how I learned TSQL. Today, I use the GUI when it is a couple of clicks versus lines of TSQL but I could do it if I needed to. If I give up all MMC snapins and other GUI’s, I might spend a little extra time with powershell at first but it should pay big dividends in the long run.</p>
<p>The Others:</p>
<p><a href="http://www.brentozar.com/archive/2009/06/give-me-a-coconut-and-six-months/" target="_blank">Brent Ozar</a>(<a href="http://twitter.com/brento" target="_blank">Twitter</a>)</p>
<p><a href="http://scarydba.wordpress.com/2009/06/05/coconuts/" target="_blank">Grant Fritchey</a>(Twitter)</p>
<p><a href="http://thomaslarock.com/2009/06/a-lovely-bunch-of-coconuts/" target="_blank">Thomas LaRock</a>(<a href="http://twitter.com/sqlrockstar" target="_blank">Twitter</a>)</p>
<p>I am tagging the following:</p>
<p><a href="http://sqlchicken.blogspot.com/" target="_blank">SQLChicken</a></p>
<p><a href="http://sqlfool.com" target="_blank">SQLFool</a></p>
<p><a href="http://facility9.com/" target="_blank">Jeremiah Peschka</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=h4fr_ZFQXYU:cLFmfTID7tg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=h4fr_ZFQXYU:cLFmfTID7tg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=h4fr_ZFQXYU:cLFmfTID7tg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=h4fr_ZFQXYU:cLFmfTID7tg:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/h4fr_ZFQXYU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/06/here-on-gilligans-isle/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/06/here-on-gilligans-isle/</feedburner:origLink></item>
		<item>
		<title>June #SQLPASS DBA SIG Meeting</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/na_udEiTD3o/</link>
		<comments>http://blog.statisticsio.com/archive/2009/06/june-sqlpass-dba-sig-meeting/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 13:39:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Database Mirroring]]></category>

		<category><![CDATA[SQL Server 2000]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:380</guid>
		<description><![CDATA[
 I am presenting that June DBA SIG. This will be the topic:
Highly Available SQL Server Upgrade Assault Tactics
In this debriefing, we will look at various methods to minimize downtime during major version upgrades. This will include upgrading from SQL Server 2000 to SQL Server 2005 and SQL 2008 as well as SQL Server 2005 [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><a href="/Portals/0/images/News-Articles/WLW/JuneSQLPASSDBASIGMeeting_7971/gijoe-snake-eyes-FL2_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'950beda3'})" ><img style="border-bottom: 0px; border-left: 0px; margin: 0px 11px 0px 0px; display: inline; border-top: 0px; border-right: 0px" title="SQLSnakeEyes" border="0" alt="SQLSnakeEyes" title="SQLSnakeEyes" align="left" src="/Portals/0/images/News-Articles/WLW/JuneSQLPASSDBASIGMeeting_7971/gijoe-snake-eyes-FL2_thumb.jpg" width="164" height="240" /></a> I am presenting that June DBA SIG. This will be the topic:</p>
<p><strong>Highly Available SQL Server Upgrade Assault Tactics</strong></p>
<p>In this debriefing, we will look at various methods to minimize downtime during major version upgrades. This will include upgrading from SQL Server 2000 to SQL Server 2005 and SQL 2008 as well as SQL Server 2005 to SQL Server 2008. We will cover key planning and testing skills that can cut substantial time off the upgrade and minimize problems after the upgrade. We will also cover the technologies that you can add to your arsenal when planning an HA upgrade assault. All hands on deck as we do battle against upgrade downtime.</p>
<p>The meeting will be <a href="/event-0961223623.ics" target="_blank">June 24th at noon</a> Eastern. More info can be found <a href="http://www.sqlpass.org/Community/SIGs/DatabaseAdministrationSIG/tabid/80/Default.aspx" target="_blank">here</a> soon. However, <a href="/event-0961223623.ics" target="_blank">set an outlook reminder now</a>. Is it <a href="/event-0961223623.ics" target="_blank">set</a>? No? Well, <a href="/event-0961223623.ics" target="_blank">set it now</a>!</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na_udEiTD3o:fulo12foyNI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na_udEiTD3o:fulo12foyNI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na_udEiTD3o:fulo12foyNI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na_udEiTD3o:fulo12foyNI:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/na_udEiTD3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/06/june-sqlpass-dba-sig-meeting/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/06/june-sqlpass-dba-sig-meeting/</feedburner:origLink></item>
		<item>
		<title>Kicking AMD’s Dead Carcass</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/_gGb_QkQ8w8/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/kicking-amds-dead-carcass/#comments</comments>
		<pubDate>Fri, 29 May 2009 13:06:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[AMD]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Intel]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:379</guid>
		<description><![CDATA[I wrote about the Nehalems a while back. I was about to write about AMD’s come back but they are due in 2010 while Intel will one ups them again before the end of this year. This is after, it is rumored, that they are delaying the Nehalem-EX just because they can. How is that [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="/Home/tabid/36/articleType/ArticleView/articleId/362/categoryId/40/Nail-in-the-Coffin-for-AMD.aspx" target="_blank">wrote about the Nehalems</a> a while back. I was about to write about <a href="http://www.flickr.com/photos/amd_unprocessed/sets/72157617467089947/" target="_blank">AMD’s come back</a> but they are due in 2010 while Intel will one ups them again before the end of this year. This is after, it is rumored, that they are delaying the Nehalem-EX just because they can. How is that for innovation? However, what are you going to do? An eight core four socket box with DDR3, and 96MB of cache will smoke an eight socket AMD HP&#160; dl785 box. Things will get fun in the database area.</p>
<p><strong>The Nehalem-EX Advantage</strong></p>
<ul>
<li>Intel Nehalem Architecture built on Intel&#8217;s unique <a href="http://www.intel.com/technology/architecture-silicon/45nm-core2/index.htm">45nm high-k metal gate technology process</a></li>
<li>Up to 8 cores per processor </li>
<li>Up to 16 threads per processor with <a href="http://www.intel.com/technology/platform-technology/hyper-threading/index.htm">Intel® Hyper-threading</a></li>
<li>Scalability up to eight sockets via <a href="http://www.intel.com/technology/quickpath/introduction.pdf">Quick Path Interconnects</a> and greater with third-party node controllers </li>
<li><a href="http://www.intel.com/technology/quickpath/">QuickPath Architecture</a> with four high-bandwidth links </li>
<li>24MB of shared cache </li>
<li>Integrated memory controllers </li>
<li><a href="http://www.intel.com/technology/turboboost/index.htm">Intel Turbo Boost Technology</a></li>
<li>Intel scalable memory buffer and scalable memory interconnects </li>
<li>Up to 9x the memory bandwidth of previous generation </li>
<li>Support for up to 16 memory slots per processor socket </li>
<li>Advanced RAS capabilities including MCA Recovery </li>
<li>2.3 billion transistors</li>
</ul>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=_gGb_QkQ8w8:jXG0pDzGmzc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=_gGb_QkQ8w8:jXG0pDzGmzc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=_gGb_QkQ8w8:jXG0pDzGmzc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=_gGb_QkQ8w8:jXG0pDzGmzc:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/_gGb_QkQ8w8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/kicking-amds-dead-carcass/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/kicking-amds-dead-carcass/</feedburner:origLink></item>
		<item>
		<title>SQL Server Gal is a Biker Chic</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/4gs0A-5TCF8/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/sql-server-gal-is-a-biker-chic/#comments</comments>
		<pubDate>Wed, 27 May 2009 03:30:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[humor]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:378</guid>
		<description><![CDATA[
 
&#160;
I didn’t say it.  However, I must say it is interesting prose. You can visit the site here and read up on her, Visual Studio Guy, Windows Master and the other members of “The Source Fource”. Might I add that Capt. Varchar made it to 2nd base but she won’t call him back.
Oh [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><a href="/Portals/0/images/News-Articles/WLW/SQLServerGalisaBikerChic_13C4F/SQLGal_4.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'5ae91ae9'})" ><img style="border-bottom: 0px; border-left: 0px; margin: 0px; display: inline; border-top: 0px; border-right: 0px" title="SQLGal" border="0" alt="SQLGal" title="SQLGal" align="left" src="/Portals/0/images/News-Articles/WLW/SQLServerGalisaBikerChic_13C4F/SQLGal_thumb_1.jpg" width="109" height="131" /></a> </p>
<p>&#160;</p>
<p>I didn’t say it. <img src='http://blog.statisticsio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> However, I must say it is interesting prose. You can visit the site <a href="http://www.msdev.com/SourceFource/Description.aspx#" target="_blank">here</a> and read up on her, Visual Studio Guy, Windows Master and the other members of “The Source Fource”. Might I add that Capt. Varchar made it to 2nd base but she won’t call him back.</p>
<p>Oh well, it is all her loss.</p>
<blockquote><p>A keen motorbike enthusiast, SQL Server Gal spends her free time and energy looking after her beloved Harley Davidson, called Data Drive. She spends Sunday afternoons challenging the speed barrier and enjoying the natural beauty of the countryside. But with her feisty, alternative take on the world, SQL Server Gal is a biker chick with a difference. Her vast knowledge and language skills mean that she has an answer to every question. And despite her glitzy life as a member of the Source Fource, she still uses her extraordinary memory skills to help others realize their ambitions.</p>
</blockquote>
<p><a href="http://www.msdev.com/SourceFource/Description.aspx#" target="_blank">Read more.</a></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4gs0A-5TCF8:jnGVS3zoLQ0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4gs0A-5TCF8:jnGVS3zoLQ0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4gs0A-5TCF8:jnGVS3zoLQ0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4gs0A-5TCF8:jnGVS3zoLQ0:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/4gs0A-5TCF8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/sql-server-gal-is-a-biker-chic/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/sql-server-gal-is-a-biker-chic/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and thePageLatch Posse Vol. 25</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/guXHbL3KYlM/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-thepagelatch-posse-vol-25/#comments</comments>
		<pubDate>Fri, 22 May 2009 19:26:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:376</guid>
		<description><![CDATA[
Control Z

This post is inspired by the #famouslastwords thread on twitter today. If you are doing a major, minor or any change on a production system, have a rollback plan. This will probably go beyond restoring from backup especially if the data is large. From someone who has put in 24 hour+ shifts, plan and [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>Control Z</strong></p>
<p><img title="ControlZ" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="209" alt="ControlZ" width="401" border="0" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePageLatchPosseVo.25_CB0C/ControlZ_thumb.jpg" /></p>
<p>This post is inspired by the <a target="_blank" href="http://search.twitter.com/search?q=%23famouslastwords">#famouslastwords</a> thread on <a target="_blank" href="http://twitter.com">twitter</a> today. If you are doing a major, minor or any change on a production system, have a rollback plan. This will probably go beyond restoring from backup especially if the data is large. From someone who has put in 24 hour+ shifts, plan and test as much as possible.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=guXHbL3KYlM:DxIYmu3hgQg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=guXHbL3KYlM:DxIYmu3hgQg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=guXHbL3KYlM:DxIYmu3hgQg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=guXHbL3KYlM:DxIYmu3hgQg:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/guXHbL3KYlM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-thepagelatch-posse-vol-25/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-thepagelatch-posse-vol-25/</feedburner:origLink></item>
		<item>
		<title>SQL Backup Cleanups(or Did  your Moneybags Make it to Tape?)</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/dsQcVbCD83M/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/sql-backup-cleanupsor-did-your-moneybags-make-it-to-tape/#comments</comments>
		<pubDate>Thu, 21 May 2009 17:13:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Backups]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:375</guid>
		<description><![CDATA[
 I have long hated maintenance plans. First was because of the cryptic error messages when they fail. However, DBAs before me clued me into the fact they clean up files whether or not they make it to tape. The cleanup process is oblivious to the tape backup. This is really important. It can be [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><a onclick="return mp.expand(this,{slideshowGroup:'7639ef98'})" class="itcexpando" href="/Portals/0/images/News-Articles/WLW/SQLBackupCleanupsorDidyourMoneybagsMakei_ABA5/moneybags_2.jpg"><img height="240" border="0" align="left" width="188" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/SQLBackupCleanupsorDidyourMoneybagsMakei_ABA5/moneybags_thumb.jpg" title="moneybags" alt="moneybags" style="border: 0px none ; margin: 0px 13px 0px 0px; display: inline;" /></a> I have long hated maintenance plans. First was because of the cryptic error messages when they fail. However, DBAs before me clued me into the fact they clean up files whether or not they make it to tape. The cleanup process is <strong>oblivious</strong> to the tape backup. This is really important. It can be catastrophic for this to happen. How many days do you keep on disk? One, two, three, seven days? Do you manage the tape backup as well? What if you have to restore from tape longer than that but the windowsbackup admin was out on vacation while the tape backup was failing? I submit to you that it is better to fill up the backup and log drives before you delete non-archived backups.</p>
<p>There are several ways you can guarantee backups make it to tape before you delete them. First, you could check the archive bit.</p>
<p>For example:</p>
<p>del /a-a *.trn *.bak *.dff</p>
<p>Of course, you may wish to do it from powershell, vbscript or xp_cmdshell so you can only delete files older than a certain date. You may want additional logic if you need to keep a weekly full, a nightly diff and 24 hours of tlogs ON DISK.</p>
<p>Most backup software also allows you to run a post job script where you could clean up backups. I can think of horrific scenarios where it would still delete the <strong>“money bags”</strong> so I would stick with the windows file system attribute. If there is a bug there, it will be SEV A and lot of people will run into it.</p>
<div style="clear: both; height: 11px;" class="d_itc_f"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=dsQcVbCD83M:9DhSrDCRroA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=dsQcVbCD83M:9DhSrDCRroA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=dsQcVbCD83M:9DhSrDCRroA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=dsQcVbCD83M:9DhSrDCRroA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/dsQcVbCD83M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/sql-backup-cleanupsor-did-your-moneybags-make-it-to-tape/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/sql-backup-cleanupsor-did-your-moneybags-make-it-to-tape/</feedburner:origLink></item>
		<item>
		<title>Call for Speakers and Abstract Tips</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/bNPyRhZOS-c/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/call-for-speakers-and-abstract-tips/#comments</comments>
		<pubDate>Tue, 19 May 2009 13:11:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[professional development]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:374</guid>
		<description><![CDATA[I have now been on both ends of the process. Submitting abstracts for conferences and selecting them in this year’s SQL PASS process. 
First, I would like to applaud PASS for taking a huge step forward in two areas. First is marketing. They have grow the submissions,&#160; sessions and attendees at an exponential pace. I [...]]]></description>
			<content:encoded><![CDATA[<p>I have now been on both ends of the process. Submitting abstracts for conferences and selecting them in this year’s SQL PASS process. </p>
<p>First, I would like to applaud PASS for taking a huge step forward in two areas. First is marketing. They have grow the submissions,&#160; sessions and attendees at an exponential pace. I guess they will beat TECHED this year. They also introduced a social element to the process. Once you submitted an abstract, it was open to others to view. This creates a <a href="http://en.wikipedia.org/wiki/Crowdsourcing" target="_blank">crowdsourcing</a> element. It makes the community to step it up a notch. The result is a better conference for the participants due to competition.</p>
<p>Here are a few tips from my experience on both sides of the isle.</p>
<ul>
<li>Get a proof reader. Word can spell check but it does not pick up on everything especially punctuation and grammar errors. I suck at this too. If you read a blog post from me with no grammar errors, it probably means the wife proofed it. I saw this a lot with foreign submissions. Some of these sessions, I am sure the speaker would do a good job but I have to take points because of this.</li>
<li>Use vivid action verbs. Do not use have, be , was, were etc. However, go <strong>beyond</strong> action verbs like “learn” and tell us what attendees will “consume”, &quot;be inundated with”, “be bombarded&#160; with” etc.</li>
<li>Use as many characters as possible. There were a few short abstracts that I found short but good. However, at first glance, I was hesitant until I realized the abstract was very, very concise. In general, it is better to use more words than necessary than too few. If you have the gift of conciseness, good for you. Otherwise, use words!</li>
<li>Submit as many abstracts as possible. This should be a “duh” bullet but I see MVP’s and authors submitting a single abstract on topics with lots of competitions like virtualization, SAN, and performance. Max out your submissions. Some conferences will not select you unless you are selected for at least 3 sessions.</li>
<li>Start out and end with a BANG! This includes the session title, the first sentence and the last sentence. If your abstract is two sentences, keep working.</li>
<li>Especially if you are new, look for topics that are not covered every conference several times like performance, consolidation, SANs etc. However…</li>
<li>Do not submit niche topics. A heath care or financial industry related topic might be compelling but spin it as a compliance topic that could be applied to a lot of industries.</li>
</ul>
<p>Anyway, I would be happy to review your abstract in the future and provide constructive criticism. Feel free to drop me a note. </p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=bNPyRhZOS-c:Utw8AmEwEbA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=bNPyRhZOS-c:Utw8AmEwEbA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=bNPyRhZOS-c:Utw8AmEwEbA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=bNPyRhZOS-c:Utw8AmEwEbA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/bNPyRhZOS-c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/call-for-speakers-and-abstract-tips/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/call-for-speakers-and-abstract-tips/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and the Pagelatch Posse Vol. 24</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/B_Rb2g9oI7I/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-the-pagelatch-posse-vol-24/#comments</comments>
		<pubDate>Fri, 15 May 2009 19:05:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:373</guid>
		<description><![CDATA[
I am not NULL!

Adapted from OfficeOFFline.

]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>I am not NULL!</strong></p>
<p><a class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'7bcc7385'})" href="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.24_C61D/IamnotNULL_2.jpg"><img title="IamnotNULL" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="IamnotNULL" width="405" border="0" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.24_C61D/IamnotNULL_thumb.jpg" /></a></p>
<p>Adapted from <a target="_blank" href="http://blogs.msdn.com/OfficeOFFline">OfficeOFFline</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=B_Rb2g9oI7I:6axAEE9cBtA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=B_Rb2g9oI7I:6axAEE9cBtA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=B_Rb2g9oI7I:6axAEE9cBtA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=B_Rb2g9oI7I:6axAEE9cBtA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/B_Rb2g9oI7I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-the-pagelatch-posse-vol-24/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/capt-varcharmax-and-the-pagelatch-posse-vol-24/</feedburner:origLink></item>
		<item>
		<title>Yup, I suck.</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/D4UeuQuy_zs/</link>
		<comments>http://blog.statisticsio.com/archive/2009/05/yup-i-suck/#comments</comments>
		<pubDate>Thu, 14 May 2009 02:59:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Crybaby]]></category>

		<category><![CDATA[Off topic]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:372</guid>
		<description><![CDATA[
 
I have been pinned down with employee reviews and SQL PASS abstracts. On top of that, I have been learning Linux and Oracle instead of working with SQL. It is fun. I am learning 30 things a day but it is either level 100 or 500 for this crowd. I will put out a [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><a href="/Portals/0/images/News-Articles/WLW/YupIsuck_1351E/DavidHasselhoffsaysyousuck%5B1%5D_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'bac8cb4f'})" ><img style="border-bottom: 0px; border-left: 0px; margin: 0px 10px 0px 0px; display: inline; border-top: 0px; border-right: 0px" title="DavidHasselhoffsaysyousuck[1]" border="0" alt="DavidHasselhoffsaysyousuck[1]" title="DavidHasselhoffsaysyousuck[1]" align="left" src="/Portals/0/images/News-Articles/WLW/YupIsuck_1351E/DavidHasselhoffsaysyousuck%5B1%5D_thumb.jpg" width="244" height="244" /></a> </p>
<p>I have been pinned down with employee reviews and SQL PASS abstracts. On top of that, I have been learning Linux and Oracle instead of working with SQL. It is fun. I am learning 30 things a day but it is either level 100 or 500 for this crowd. I will put out a Oracle cheat sheet for SQL DBA’s soon though.</p>
<p>You can peep <a href="http://friendfeed.com/statisticsio" target="_blank">my life stream</a> if you want to keep up.</p>
<p>Until then I will keep failing…</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=D4UeuQuy_zs:TqWlhN2RZ_E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=D4UeuQuy_zs:TqWlhN2RZ_E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=D4UeuQuy_zs:TqWlhN2RZ_E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=D4UeuQuy_zs:TqWlhN2RZ_E:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/D4UeuQuy_zs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/05/yup-i-suck/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/05/yup-i-suck/</feedburner:origLink></item>
		<item>
		<title>No News is Bad News</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/3hzZ9k1pD5E/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/no-news-is-bad-news/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 00:57:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Crybaby]]></category>

		<category><![CDATA[Off topic]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:371</guid>
		<description><![CDATA[It means I have been getting my a$$ handed to me at work. It is a good thing. I like action but I like blogging too. Anyway I have a few topics queued up but until then I will post a few links.
The company I work for was awarded by VMWare as Service Provider of [...]]]></description>
			<content:encoded><![CDATA[<p>It means I have been getting my a$$ handed to me at work. It is a good thing. I like action but I like blogging too. Anyway I have a few topics queued up but until then I will post a few links.</p>
<p>The company I work for was awarded by VMWare as <a href="http://tinyurl.com/cqgkwp" target="_blank">Service Provider of the Year.</a></p>
<p>SQLChicken(<a href="http://sqlchicken.blogspot.com/" target="_blank">WWW</a>, <a href="http://sqlchicken.blogspot.com/feeds/posts/default" target="_blank">RSS</a>, <a href="http://twitter.com/sqlchicken" target="_blank">Twitter</a>) <a href="http://sqlchicken.blogspot.com/2009/04/vmware-unveils-new-vsphere-4_21.html" target="_blank">posted on ESX 4.0 aka vSphere</a> from a DBA’s perspective.</p>
<p>The MySQL founder <a href="http://monty-says.blogspot.com/2009/04/to-be-free-or-not-to-be-free.html" target="_blank">talks about the OracleSUN acquisition</a>. </p>
<p>Tony Bain’s <a href="http://twitter.com/tonybain" target="_blank">Twitter feed</a> has some interesting linkscommentary regarding Oracle and MySQL.</p>
<p>There is also an article on <a href="http://www.networkworld.com/community/node/41076" target="_blank">the OracleSUN deal means to MSFT</a>. I don’t agree 100% though.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=3hzZ9k1pD5E:kUCZH8DSEGk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=3hzZ9k1pD5E:kUCZH8DSEGk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=3hzZ9k1pD5E:kUCZH8DSEGk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=3hzZ9k1pD5E:kUCZH8DSEGk:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/3hzZ9k1pD5E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/no-news-is-bad-news/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/no-news-is-bad-news/</feedburner:origLink></item>
		<item>
		<title>RE: Dear #SQLPASS, Don’t BI us to Death</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/qtaHdDcmO2U/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/re-dear-sqlpass-dont-bi-us-to-death/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 21:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Crybaby]]></category>

		<category><![CDATA[editorial]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:370</guid>
		<description><![CDATA[
 Last week, I wrote an editorial that I tried to keep fact based and my opinion out of. Wait, is that still an editorial? Anyway, I was happy to see this post by Bill Graziano(RSS, Twitter) today. BTW, have you subscribed to the SQLPASS blog?
I was concerned that the BI track would be taking [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sqlpass.org/Admin/Vendors/BannerClickThrough.aspx?BannerId=5&amp;VendorId=1&amp;PortalId=0" target="_blank"></a></p>
<p> Last week, I wrote <a href="/Home/tabid/36/articleType/ArticleView/articleId/364/Dear-PASS-Donrsquot-BI-us-to-Death.aspx" target="_blank">an editorial</a> that I tried to keep fact based and my opinion out of. Wait, is that still an editorial? Anyway, I was happy to see <a href="http://www.sqlpass.org/Community/PASSBlog/articleType/ArticleView/articleId/68/Mixing-BI-and-OLTP-at-the-Summit.aspx" target="_blank">this post</a> by <a href="http://weblogs.sqlteam.com/billg/" target="_blank">Bill Graziano</a>(<a href="http://feeds.feedburner.com/sqlteamblogsbillg" target="_blank">RSS</a>, <a href="http://twitter.com/billgraziano" target="_blank">Twitter</a>) today. BTW, have you <a href="http://www.sqlpass.org/DesktopModules/DnnForge%20-%20NewsArticles/Rss.aspx?TabID=75&amp;ModuleID=494&amp;MaxCount=25" target="_blank">subscribed</a> to the SQLPASS blog?</p>
<p>I was concerned that the BI track would be taking away from the other tracks even though it didn’t look to be justified based on the survey. My concerns have been alleviated. </p>
<p>Here are a few quotes:</p>
<ul>
<li>We also increased the total number of sessions at the conference to 168.</li>
<li>First, we&#8217;re going to have more OLTP sessions than we&#8217;ve ever had before.</li>
<li>Second, the combination of the Application Development track and DBA track is now larger than the entire conference was in 2006.</li>
<li>We think our overall mix of roughly two-thirds OLTP and one-third BI will meet the needs of our conference attendees.</li>
</ul>
<p>Again the full post can be <a href="http://www.sqlpass.org/Community/PASSBlog/articleType/ArticleView/articleId/68/Mixing-BI-and-OLTP-at-the-Summit.aspx" target="_blank">found here</a>.</p>
</p>
<p> <img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://sqlpass.org/Portals/0/_Marketing/PASS2009_300x250.gif" />
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qtaHdDcmO2U:87RJNHdJbE4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qtaHdDcmO2U:87RJNHdJbE4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qtaHdDcmO2U:87RJNHdJbE4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qtaHdDcmO2U:87RJNHdJbE4:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/qtaHdDcmO2U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/re-dear-sqlpass-dont-bi-us-to-death/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/re-dear-sqlpass-dont-bi-us-to-death/</feedburner:origLink></item>
		<item>
		<title>Connecting to SQL Server in Single User Mode</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/wmbu9SSuuOk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/connecting-to-sql-server-in-single-user-mode/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 22:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:369</guid>
		<description><![CDATA[Have you had to connect to SQL Server in single user mode but the application always beats you to it. No matter how fast you try! I have actually had to unplug nics and have smart hands do it. Well, there is a soon to be documented extension of –m.
Basically, you can specify an application [...]]]></description>
			<content:encoded><![CDATA[<p>Have you had to connect to SQL Server in single user mode but the application always beats you to it. <strong>No matter how fast you try! </strong>I have actually had to unplug nics and have smart hands do it. Well, there is a soon to be documented extension of –m.</p>
<p>Basically, you can specify an application like -m&quot;sqlcmd&quot;. This means only a single instance of the SQLCMD application can connect. Just start SQL with -m&quot;sqlcmd&quot;, unbreak what you just broke and the restart SQL normally. <img src='http://blog.statisticsio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Nice, huh?</p>
<p>Keep in mind that there are ways around this so don’t use it for security.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wmbu9SSuuOk:FuCK4MyOZmM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wmbu9SSuuOk:FuCK4MyOZmM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wmbu9SSuuOk:FuCK4MyOZmM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wmbu9SSuuOk:FuCK4MyOZmM:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/wmbu9SSuuOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/connecting-to-sql-server-in-single-user-mode/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/connecting-to-sql-server-in-single-user-mode/</feedburner:origLink></item>
		<item>
		<title>Why People Come Here</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/OxoAABehd8g/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/why-people-come-here/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 03:39:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cxpacket]]></category>

		<category><![CDATA[Offtopic]]></category>

		<category><![CDATA[Statistics]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:368</guid>
		<description><![CDATA[Here is the top 10 via Google searches in the last month:
&#160;



1

cxpacket


94

1.07
0:00:39
85.11%
94.68%


2

70-432


35

1.23
0:00:52
88.57%
82.86%


3

&#34;sql server 2005&#34; + fix + &#34;indexed view&#34;


27

2.15
0:01:14
0.00%
0.00%


4

sql quiz


26

1.12
0:00:37
96.15%
92.31%


5

&#34;sql server 2005&#34; cpu wmi


22

1.09
0:00:06
0.00%
90.91%


6

statisticsio


18

1.94
0:02:47
0.00%
55.56%


7

jason massie


14

2.86
0:02:45
50.00%
42.86%


8

cool people on twitter


13

1
0:00:00
100.00%
100.00%


9

cxpacket sql server 2005


13

1.69
0:01:20
84.62%
69.23%


10

exam 70-432


12

1.5
0:00:18
100.00%
83.33%



&#160;
Here are some more interest hits:
coolest people to follow on twitter
bacon bitsandbytes
&#34;linked server&#34; &#38; &#34;tsql&#34; &#38; &#34;1000 rows&#34;
how much does twitter spend on server
godaddy [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the top 10 via Google searches in the last month:</p>
<p>&#160;</p>
<table cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td width="64">1</td>
<td width="264">
<p>cxpacket</p>
</td>
<td width="64">
<p>94</p>
</td>
<td width="64">1.07</td>
<td width="64">0:00:39</td>
<td width="64">85.11%</td>
<td width="64">94.68%</td>
</tr>
<tr>
<td width="64">2</td>
<td>
<p>70-432</p>
</td>
<td width="64">
<p>35</p>
</td>
<td width="64">1.23</td>
<td width="64">0:00:52</td>
<td width="64">88.57%</td>
<td width="64">82.86%</td>
</tr>
<tr>
<td width="64">3</td>
<td>
<p>&quot;sql server 2005&quot; + fix + &quot;indexed view&quot;</p>
</td>
<td width="64">
<p>27</p>
</td>
<td width="64">2.15</td>
<td width="64">0:01:14</td>
<td width="64">0.00%</td>
<td width="64">0.00%</td>
</tr>
<tr>
<td width="64">4</td>
<td>
<p>sql quiz</p>
</td>
<td width="64">
<p>26</p>
</td>
<td width="64">1.12</td>
<td width="64">0:00:37</td>
<td width="64">96.15%</td>
<td width="64">92.31%</td>
</tr>
<tr>
<td width="64">5</td>
<td>
<p>&quot;sql server 2005&quot; cpu wmi</p>
</td>
<td width="64">
<p>22</p>
</td>
<td width="64">1.09</td>
<td width="64">0:00:06</td>
<td width="64">0.00%</td>
<td width="64">90.91%</td>
</tr>
<tr>
<td width="64">6</td>
<td>
<p>statisticsio</p>
</td>
<td width="64">
<p>18</p>
</td>
<td width="64">1.94</td>
<td width="64">0:02:47</td>
<td width="64">0.00%</td>
<td width="64">55.56%</td>
</tr>
<tr>
<td width="64">7</td>
<td>
<p>jason massie</p>
</td>
<td width="64">
<p>14</p>
</td>
<td width="64">2.86</td>
<td width="64">0:02:45</td>
<td width="64">50.00%</td>
<td width="64">42.86%</td>
</tr>
<tr>
<td width="64">8</td>
<td>
<p>cool people on twitter</p>
</td>
<td width="64">
<p>13</p>
</td>
<td width="64">1</td>
<td width="64">0:00:00</td>
<td width="64">100.00%</td>
<td width="64">100.00%</td>
</tr>
<tr>
<td width="64">9</td>
<td>
<p>cxpacket sql server 2005</p>
</td>
<td width="64">
<p>13</p>
</td>
<td width="64">1.69</td>
<td width="64">0:01:20</td>
<td width="64">84.62%</td>
<td width="64">69.23%</td>
</tr>
<tr>
<td width="64">10</td>
<td>
<p>exam 70-432</p>
</td>
<td width="64">
<p>12</p>
</td>
<td width="64">1.5</td>
<td width="64">0:00:18</td>
<td width="64">100.00%</td>
<td width="64">83.33%</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p><strong>Here are some more interest hits:</strong></p>
<blockquote><p>coolest people to follow on twitter</p>
<p>bacon bitsandbytes</p>
<p>&quot;linked server&quot; &amp; &quot;tsql&quot; &amp; &quot;1000 rows&quot;</p>
<p>how much does twitter spend on server</p>
<p>godaddy sql will not work</p>
<p>sql funny statement</p>
<p>jason massie know now</p>
<p><strong><u>wtf is sql server</u></strong></p>
</blockquote>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=OxoAABehd8g:KAphJRLnX8E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=OxoAABehd8g:KAphJRLnX8E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=OxoAABehd8g:KAphJRLnX8E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=OxoAABehd8g:KAphJRLnX8E:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/OxoAABehd8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/why-people-come-here/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/why-people-come-here/</feedburner:origLink></item>
		<item>
		<title>Greater Fort Worth SQL Server Users Group</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/ULEPy7ir870/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/greater-fort-worth-sql-server-users-group/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 19:07:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[DMV's]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:367</guid>
		<description><![CDATA[I will be speaking at the Greater Fort Worth SQL Server Users group this Wednesday. The talk will be on Troubleshooting with the DMV’s. If you are a DFW SQL’er come on out. Directions and more info can be found here.
If you don’t come, I am sending my boy after you with blow torch and [...]]]></description>
			<content:encoded><![CDATA[<p>I will be speaking at the Greater Fort Worth SQL Server Users group this Wednesday. The talk will be on Troubleshooting with the DMV’s. If you are a DFW SQL’er come on out. Directions and more info can be found <a href="http://gfwssug.org/j15/" target="_blank">here.</a></p>
<p>If you don’t come, I am sending my boy after you with blow torch and a pair of pliers.</p>
<p><img src="http://pictureisunrelated.com/wp-content/uploads/2009/04/wtf_pics-sex-dual-wield.jpg" /></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ULEPy7ir870:xaoNUHzYUTA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ULEPy7ir870:xaoNUHzYUTA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ULEPy7ir870:xaoNUHzYUTA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ULEPy7ir870:xaoNUHzYUTA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/ULEPy7ir870" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/greater-fort-worth-sql-server-users-group/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/greater-fort-worth-sql-server-users-group/</feedburner:origLink></item>
		<item>
		<title>Physical Database Layout</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/uz3897K5E44/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/physical-database-layout/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 04:10:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:366</guid>
		<description><![CDATA[Paul Randal has a survey on his blog that I would be interested in seeing as largest as sample as possible. I think this is important so I am going to post a link to you. Your vote counts. Yes, we can!
http://www.sqlskills.com/BLOGS/PAUL/post/Weekly-survey-does-size-really-matter-or-is-it-what-you-do-with-it.aspx
I come from the school of thought that unless you have an enterprise SAN [...]]]></description>
			<content:encoded><![CDATA[<p>Paul Randal has a survey on his blog that I would be interested in seeing as largest as sample as possible. I think this is important so I am going to post a link to you. Your vote counts. Yes, we can!</p>
<p><a title="http://www.sqlskills.com/BLOGS/PAUL/post/Weekly-survey-does-size-really-matter-or-is-it-what-you-do-with-it.aspx" href="http://www.sqlskills.com/BLOGS/PAUL/post/Weekly-survey-does-size-really-matter-or-is-it-what-you-do-with-it.aspx">http://www.sqlskills.com/BLOGS/PAUL/post/Weekly-survey-does-size-really-matter-or-is-it-what-you-do-with-it.aspx</a></p>
<p>I come from the school of thought that unless you have an enterprise SAN that exceeds your IO requirements or you are intimately familiar with the IO patterns of your app, that you should use one disk group for burstable performance and possibly a second disk group for backups.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=uz3897K5E44:cKVC2hxyUfE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=uz3897K5E44:cKVC2hxyUfE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=uz3897K5E44:cKVC2hxyUfE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=uz3897K5E44:cKVC2hxyUfE:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/uz3897K5E44" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/physical-database-layout/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/physical-database-layout/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and the Pagelatch Posse Vol. 23</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/cRfKxRtBPBk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/capt-varcharmax-and-the-pagelatch-posse-vol-23/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 22:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:365</guid>
		<description><![CDATA[
You might be a geek if…

The stole this from the #youmightbeageek conversation going around twitter yesterday. Funny stuff. The original post is here.

]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>You might be a geek if…</strong></p>
<p><a class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'0160bb98'})" href="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.23_FACC/alarmclock_2.jpg"><img title="alarmclock" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="alarmclock" width="405" border="0" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.23_FACC/alarmclock_thumb.jpg" /></a></p>
<p>The stole this from the <a target="_blank" href="http://search.twitter.com/search?q=%23youmightbeageek">#youmightbeageek</a> conversation going around twitter yesterday. Funny stuff. The <a target="_blank" href="http://twitter.com/chuckboycejr/status/1485556690">original post is here</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=cRfKxRtBPBk:WrkntwM_hcI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=cRfKxRtBPBk:WrkntwM_hcI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=cRfKxRtBPBk:WrkntwM_hcI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=cRfKxRtBPBk:WrkntwM_hcI:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/cRfKxRtBPBk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/capt-varcharmax-and-the-pagelatch-posse-vol-23/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/capt-varcharmax-and-the-pagelatch-posse-vol-23/</feedburner:origLink></item>
		<item>
		<title>Dear PASS, Don’t BI us to Death</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/MdN9ye8nmew/</link>
		<comments>http://blog.statisticsio.com/archive/2009/04/dear-pass-dont-bi-us-to-death/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 22:38:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Crybaby]]></category>

		<category><![CDATA[editorial]]></category>

		<category><![CDATA[SQLPASS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:364</guid>
		<description><![CDATA[I hope I do not offend my BI brethren. I am just stating the facts from the survey and the fact that that the abstract submission deadline has been extended due to fact that the BI conference has been canceled.
My request is that the number of sessions per track reflect the survey results. I hope [...]]]></description>
			<content:encoded><![CDATA[<p>I hope I do not offend my BI brethren. I am just stating the facts from the survey and the fact that that the abstract submission deadline has been extended due to fact that the BI conference has been canceled.</p>
<p>My request is that the number of sessions per track reflect the survey results. I hope that the BI track is not inflated to the point that it cuts out sessions from other tracks.</p>
<p>Here are some fact from the survey which can be found <a href="http://www.sqlpass.org/Default.aspx?TabId=227" target="_blank">here</a>.</p>
<ul>
<li>89% of the people surveyed are DBA’s or DBD’s</li>
<li>27% of the people surveyed are BI professionals.</li>
<li>69% of the people surveyed answered the questions on the DBA track. 58% want advanced topics.</li>
<li>68% of the people surveyed answered the questions on the database dev track. 59% want advanced topics.</li>
<li>54% of the people surveyed answered the questions on the BI track. 56% of those want intermediate sessions.</li>
<li>60% of the people surveyed answered the questions on the Professional Development track.</li>
</ul>
<p>Based on the survey DBA and Database Dev tracks should have the most sessions. The Professional Development and BI tracks should have close to an equal number. In the past, it seems like the BI sessions doubled or tripled the Professional Development session.</p>
<p>I am trying to keep opinion out of this post so I leave it an this. Am I misinterpreting the numbers? What are your thoughts?</p>
<p><strong>Disclosure: I am team lead on the DBA abstract selection team and I have submitting a single ProDev abstract.</strong></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=MdN9ye8nmew:DhZaOI4wzS0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=MdN9ye8nmew:DhZaOI4wzS0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=MdN9ye8nmew:DhZaOI4wzS0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=MdN9ye8nmew:DhZaOI4wzS0:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/MdN9ye8nmew" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/04/dear-pass-dont-bi-us-to-death/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/04/dear-pass-dont-bi-us-to-death/</feedburner:origLink></item>
		<item>
		<title>Mixed Workloads Part 3</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/8SJNIFKKRpk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-3/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 13:17:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Mixed Workloads]]></category>

		<category><![CDATA[OLTP]]></category>

		<category><![CDATA[Reporting]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:363</guid>
		<description><![CDATA[In part 1, I talk about what I consider feeble attempts at implementing a reporting server through log shipping, mirroringsnapshots and, to a lesser extent, replication. Unless you invest in a real ETL solution, I argued that it is better to run a mixed workload. I talked about the architectural advantages of running mixed workloads [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="/Home/tabid/36/articleType/ArticleView/articleId/359/Mixed-Workloads-Part-1.aspx" target="_blank">part 1,</a> I talk about what I consider <a href="/Home/tabid/36/articleType/ArticleView/articleId/359/Mixed-Workloads-Part-1.aspx" target="_blank">feeble attempts</a> at implementing a reporting server through log shipping, mirroringsnapshots and, to a lesser extent, replication. Unless you invest in a real ETL solution, I argued that it is better to run a mixed workload. I talked about the <a href="/Home/tabid/36/articleType/ArticleView/articleId/360/Mixed-Workloads-Part-2.aspx" target="_blank">architectural advantages of running mixed workloads in part 2</a>. In a nutshell, doubling the hardware and cutting the data in half.</p>
<p>In this final post, we will talk about new features in SQL Server 2008 and some features that have been around a while that can help with mixed workloads.There are also some bad practices that could be the right answer that we won’t&#160; talk about but let us mention triggers, table valued functions, 20 table outer joins, some correlated subqueries and table variables. These are options but usually not good ones. In the right circumstances, they could be right like an end of year report.</p>
<p>Here are the main tools in your arsenal:</p>
<ul>
<li>Resource governor </li>
<li>Covering filtered Indexes </li>
<li>Indexed views </li>
<li>Partitioning + data compression </li>
<li>Persisted computed columns </li>
<li>Archiving on the same server </li>
<li>After hours denormalization(indexes views with deferred updates) </li>
</ul>
<p><strong>Resource Governor</strong></p>
<p>Chances are you do not want to limit throughput of your OLTP queries. The resource governor does not do a good job with these queries anyway because their duration is usually so short. However, let’s say you have reports that run by executives. You can put them in a workload group that gives them as much resources as possible without affecting OLTP traffic. You may also have a less important group of reports from the marketing or sales teams that you can limit further. One caveat to the resource governor is it cannot limit, disk IO so if that is your bottleneck, this will not help much.</p>
<p><strong>Covering Filtered indexes</strong></p>
<p>Filtered indexes are a great new feature in SQL Server 2008. When optimizing for reporting queries on your OLTP system, you are probably going to be touching a lot of rows so covering the query is important. For example, the order fulfillment team works off a report of unfulfilled orders that pulls in order data, customer data, shipping data etc. In this case, you would add covering filtering indexes on each of those tables. The filtered indexes reduce write overhead on your OLTP writes and reduces read overhead of your reporting.</p>
<p><strong>Indexed Views</strong></p>
<p>Indexed views take filtered indexed view a step further. You can create indexes on multiple tables. Think of it as denormalization alongside your OLTP optimized schema. In the previous order fulfillment example, we can basically persist that report and have it updated in real time. There is more overhead to your OLTP transactions so weigh the pro’s and con’s. Test if possible.Unfortunately, you cannot defer changes to your indexed views but I believe there is a feature request for this on <a href="http://connect.microsoft.com/sql" target="_blank">Connect</a> and I will tell you about a workaround shortly.</p>
<p><strong>Partitioning and Compression</strong></p>
<p>This is the dynamic duo when mixing workloads. Unfortunately, the nitty gritty details would require their own post. For example, one mixed workload may benefit from compression on the hottest partition while the older data should be uncompressed. However, another workload may benefit from the opposite. The key here is really understanding your workload, data and hardware limitations. Most importantly, plan then TEST, TEST, TEST! Once you partition, you loose online operations so if you do it wrong, you are stuck.</p>
<p>&#160;<strong>Persisted Computed Columns</strong></p>
<p>This is an easy one. It is a simple trade off. Writes take a little more CPU and space in exchange for reduced CPU time when you report. Take your orders table, for example. You could calculate and save shipping costs when you insert the rows. If it adds a few milliseconds to the insert but shaves seconds off the hourly open orders report that the execs are looking at, it may be an easy decision.</p>
<p><strong>Archival</strong></p>
<p>This might not always be possible depending on your data. It may not be necessary if you have finely tuned indexes. However, it could make a night and day difference. If you need the data, UNION ALL’ing the production table with the archive table has little overhead. I do suggest you keep the archive database on the same server unless it will rarely be accessed. Trying to do this with linked servers is bad.</p>
<p><strong>After hours denormalization</strong></p>
<p>This is basically precreating reports during off hours. Think of it as indexed view with deferred updates. You can UNION with the OLTP tables if you need realtime data in your report. In an ideal world, touching less rows in the OLTP table and then UNIONing with the denormalized data will result in the best of both worlds if you need real time data.</p>
<p><strong>The final word</strong></p>
<p>As the concurrency and size of data scales, both a pseudo reporting database and a mixed work load scenario will not meet business requirements. A business requirement of real time data may dictate a mixed workload. There may be plenty of workloads where scaling out and scaling up both meet performance demands. I just wanted to play devil’s advocate and&#160; let you know there is another option when planning reporting.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8SJNIFKKRpk:wEsME5S42WM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8SJNIFKKRpk:wEsME5S42WM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8SJNIFKKRpk:wEsME5S42WM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8SJNIFKKRpk:wEsME5S42WM:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/8SJNIFKKRpk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-3/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-3/</feedburner:origLink></item>
		<item>
		<title>Nail in the Coffin for AMD?</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/7AxpglnS6hw/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/nail-in-the-coffin-for-amd/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 02:54:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:362</guid>
		<description><![CDATA[ Intel released the Nehalem processor family. The Intel® Xeon® Processor 5500 series family. This could be the nail in the coffin for AMD. I hope not. Without competition, Intel can rest on its laurels. 
Lets look at the goodies. On Glenn Berry’s blog, he points out the SQL specific benchmarks. This comes from the [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; margin: 0px 11px 0px 0px" src="http://www.intel.com/sites/sitewide/pix/badges/xeon/xeon09_62_trans.gif" align="left" /> Intel released the Nehalem processor family. The Intel® Xeon® Processor 5500 series family. This could be the nail in the coffin for AMD. I hope not. Without competition, Intel can rest on its laurels. </p>
<p>Lets look at the goodies. On Glenn Berry’s blog, he points out the <a href="http://glennberrysqlperformance.spaces.live.com/Blog/cns!45041418ECCAA960!1288.entry" target="_blank">SQL specific benchmarks</a>. This comes from the <a href="http://it.anandtech.com/IT/showdoc.aspx?i=3536" target="_blank">Anandtech benchmarks</a>. This is what caught my eye from that <a href="http://it.anandtech.com/IT/showdoc.aspx?i=3536" target="_blank">review</a>.</p>
<blockquote><p>The memory controller has up to three channels. A dual CPU configuration has access to 35GB/s of memory bandwidth (measured with stream) if you use DDR3-1333. The latest dual Opteron achieves 19.4GB/s with DDR2-800</p>
</blockquote>
<p>Think about it. If you have a SQL box with 32GB of RAM and a VLDB, you could theoretically churn the buffer pool once every second. Of course, you will probably hit a disk bottleneck first. In addition the the proc specific improvements, DDR3 with NUMA support in a server is a huge leap. </p>
<p>Today, HP also introduced the DL3X0 G6. Here is a link to the the <a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF06a/15351-15351-3328412-241644-241475-3884319.html" target="_blank">DL 360 G6 specs</a>. I am speculating but I bet&#160; it would beat a dual socket 6 core <a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF25a/15351-15351-3328412-241644-3328422-3454575.html" target="_blank">DL 580 G5</a>. Most definitely on IO bound workloads like a database server. Hopefully, the DL580 G6’s are coming soon. Maybe an 8 socket DL 780 G6. <img src='http://blog.statisticsio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mix that with VMWare ESX 4.0 that is in RC and virtualization of the database server may have come of age.</p>
<p>The Opteron 1up’ed Intel in 2004. Now the ball is back in AMD’s court. I am rooting for you!</p>
<p><img height="398" src="http://download.intel.com/pressroom/kits/xeon/5500series/images/Xeon_RoofTops_Shot.jpg" width="600" /></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7AxpglnS6hw:GSPRu5zUsZk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7AxpglnS6hw:GSPRu5zUsZk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7AxpglnS6hw:GSPRu5zUsZk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7AxpglnS6hw:GSPRu5zUsZk:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/7AxpglnS6hw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/nail-in-the-coffin-for-amd/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/nail-in-the-coffin-for-amd/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and the Pagelatch Posse Vol. 22</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/8GcfP65yfUY/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/capt-varcharmax-and-the-pagelatch-posse-vol-22/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 20:33:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:361</guid>
		<description><![CDATA[
The T’aint
 
If you don’t get it, bless your heart. If you do, don’t cry foul because you do not learn this phrase in Sunday School. Besides, it is ALWAYS the network!

]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><strong>The T’aint</strong></p>
<p><a href="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.22_D92B/TAINT_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'c39a89e1'})" ><img title="TAINT" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="TAINT" title="TAINT" src="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.22_D92B/TAINT_thumb.jpg" width="405" border="0" /></a> </p>
<p>If you don’t get it, bless your heart. If you do, don’t cry foul because you do not learn this phrase in Sunday School. Besides, it is ALWAYS the network!</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8GcfP65yfUY:dBKTlB8eTw0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8GcfP65yfUY:dBKTlB8eTw0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=8GcfP65yfUY:dBKTlB8eTw0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=8GcfP65yfUY:dBKTlB8eTw0:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/8GcfP65yfUY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/capt-varcharmax-and-the-pagelatch-posse-vol-22/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/capt-varcharmax-and-the-pagelatch-posse-vol-22/</feedburner:origLink></item>
		<item>
		<title>Mixed Workloads Part 2</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/YwO7uXLCZlI/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-2/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 00:56:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Mixed Workloads]]></category>

		<category><![CDATA[OLTP]]></category>

		<category><![CDATA[Reporting]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:360</guid>
		<description><![CDATA[
I am presenting at the Ft. Worth SQL Server Users Group in April. Details forthcoming but it is basically going to be on running mixed workloads(OLTP and DSS) on the same server. This is part two of what I will be pulling into the presentation. Click here for part one.
In this part we will look [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p>I am presenting at the Ft. Worth SQL Server Users Group in April. Details forthcoming but it is basically going to be on running mixed workloads(OLTP and DSS) on the same server. This is part two of what I will be pulling into the presentation. Click here for part <a href="/Home/tabid/36/articleType/ArticleView/articleId/359/Mixed-Workloads-Part-1.aspx" target="_blank">one</a>.</p>
<p>In this part we will look at the typical hardware configurations used in part one(logshipping, mirroring, replication etc.). and what a better configuration would be especially if you leverage some new features in SQL Server 2008 to run mixed workloads.</p>
<p>Unless you invest the time to create a real reporting solution with an ETL, you end up with the following solutions based off of the methods described in part one.I see it all the time. On top of that, I see reporting queries still running on the production server because there is a need for real time data.</p>
<p><a href="/Portals/0/images/News-Articles/WLW/MixedWorkloadsPart2_A395/TypicalReporting_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'241bcd05'})" ><img title="TypicalReporting" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="394" alt="TypicalReporting" title="TypicalReporting" src="/Portals/0/images/News-Articles/WLW/MixedWorkloadsPart2_A395/TypicalReporting_thumb.jpg" width="525" border="0" /></a> </p>
<p>So what do we get with this solution? Most reporting queries are offloaded from production. However, there are a lot of con’s. The schema usually is not optimized for reporting. There is overhead in getting the data to the reporting server. The data is stored twice on disk and more importantly, memory. Finally, resource utilization is usually lopsided. For example, first thing in the morning the reporting server may be hammered while production traffic is just ramping up. During peak production traffic, the reporting server can be underutilized.</p>
<p><a href="/Portals/0/images/News-Articles/WLW/MixedWorkloadsPart2_A395/mixed_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'241bcd05'})" ><img title="mixed" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="401" alt="mixed" title="mixed" src="/Portals/0/images/News-Articles/WLW/MixedWorkloadsPart2_A395/mixed_thumb.jpg" width="323" border="0" /></a> </p>
<p>I submit to you that combing reporting and production is a better configuration if you do not invest in an ETL solution that creates a real reporting database. In the next post, we will talk about features to optimize this configuration but lets talk about what we gain just by using this architecture. </p>
<ul>
<li>The hardware is doubled and the amount of data is cut in half. </li>
<li>In the configurations that this would replace, the memory gain is huge. Unless the reporting database is optimized for reporting, the data pages in memory are going to be the same. This allows the same page in memory to satisfy both OLTP and reporting traffic. </li>
<li>This configuration gives more cores for parallel plans that are common in reporting. </li>
<li>Most of all, it make available hardware that could otherwise be idle.</li>
</ul>
<p>&#160;</p>
<p><strong>Note:</strong> I use direct attached storage(DAS) in these examples because that is where the biggest gains are to be had. However, the same benefits apply if you are on an enterprise level SAN with some caveats.</p>
<p><strong>Note 2</strong>: This series is generalized and your mileage may vary based on your particular environment, business requirements and workload.</p>
<p>In part three, we will talk about features that will help optimize a mixed workload on a single instance with feature in SQL Server 2008.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=YwO7uXLCZlI:kLMehAs0gNI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=YwO7uXLCZlI:kLMehAs0gNI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=YwO7uXLCZlI:kLMehAs0gNI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=YwO7uXLCZlI:kLMehAs0gNI:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/YwO7uXLCZlI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-2/</feedburner:origLink></item>
		<item>
		<title>Mixed Workloads Part 1</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/P2FLtmredl4/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-1/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 16:54:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Mixed Workloads]]></category>

		<category><![CDATA[OLTP]]></category>

		<category><![CDATA[Reporting]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:359</guid>
		<description><![CDATA[I am presenting at the Ft. Worth SQL Server Users Group in April. Details forthcoming but it is basically going to be on running mixed workloads(OLTP and DSS) on the same server. This is part one of what I will be pulling into the presentation.
What is NOT a Reporting Server
Log Shipping 
A log shipped copy [...]]]></description>
			<content:encoded><![CDATA[<p>I am presenting at the Ft. Worth SQL Server Users Group in April. Details forthcoming but it is basically going to be on running mixed workloads(OLTP and DSS) on the same server. This is part one of what I will be pulling into the presentation.</p>
<p><strong>What is NOT a Reporting Server</strong></p>
<p><strong>Log Shipping</strong> </p>
<p>A log shipped copy is not a reporting database. It is the same database that should be optimized for OLTP. You have no control to add supporting indexes. No denormalization. No persisted computed columns. No indexed views. Disconnects can happen midquery. More hardware. However, this is often the easiest solution,</p>
<p><strong>Database Mirroring with Snapshots</strong></p>
<p>This configuration suffers all the limitations of logshipping. However, you must run Enterprise Edition. You can get around the disconnects with creative coding.</p>
<p><strong>Nightly BackupsRestore</strong></p>
<p>Just like log shipping but the data is behind which may be ok based on business requirements. You can get around the limitations of logshiping like indexing etc. However, not practical for VLDB. </p>
<p><strong>Snapshot Replication</strong></p>
<p>This is ok for smaller databases plus you can filter tables and columns if they are not needed. You can get around some of the limitations of log shipping and mirroring but data is stale. </p>
<p><strong>Others</strong></p>
<p>Offline the database, robocopy, attach. DTSSSIS the whole db. SAN Replication. Transactions replication with no reporting modifications. </p>
<p><strong>The problem</strong></p>
<p>You double your hardware and storage with no real reporting gains in most scenarios. This might be acceptable if the reporting environment duals as DR. However, there are better solutions.</p>
<p><strong>What is next?</strong></p>
<p>Moving forward, we will talk about doubling the hardware on OTLP and using SQL 2008 feature to run reporting and OLTP on the same server.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=P2FLtmredl4:uFQ7FhlgKHY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=P2FLtmredl4:uFQ7FhlgKHY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=P2FLtmredl4:uFQ7FhlgKHY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=P2FLtmredl4:uFQ7FhlgKHY:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/P2FLtmredl4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/mixed-workloads-part-1/</feedburner:origLink></item>
		<item>
		<title>Another Overlooked Windows Setting for the DBA</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/na4aF0SXnBI/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/another-overlooked-windows-setting-for-the-dba/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:33:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:358</guid>
		<description><![CDATA[
*Warning* Only use if your array controller has a battery backed cache. *Warning*
The settings are “Enable write caching on the disk” and “Enable advanced performance”. You can access these through device manager on the properties of the disk. These settings mostly apply to direct attached storage and are unavailable for most enterprise SAN lun’s that [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>*Warning* Only use if your array controller has a battery backed cache. *Warning*</strong></p>
<p><img align="left" alt="" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/AnotherOverlookedWindowsSettingfortheDBA_F569/cache_thumb.jpg" />The settings are “Enable write caching on the disk” and “Enable advanced performance”. You can access these through device manager on the properties of the disk. These settings mostly apply to direct attached storage and are unavailable for most enterprise SAN lun’s that I have seen.</p>
<p>While we are at it, if your RAID controller cache has a readwrite ratio, it is a good idea to set it to 0% read100% write as long as you do not have a memory bottleneck. SQL uses RAM as its read buffer.</p>
<p>So is this a silver bullet for performance? Definitely not especially if you are not hitting a disk write bottleneck. However, every little bit helps and if it knocks 5-10% off of your 3 hour long full backup to disk, that is a win!</p>
<p>Happy Friday!</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na4aF0SXnBI:6wLjxhkRKo4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na4aF0SXnBI:6wLjxhkRKo4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=na4aF0SXnBI:6wLjxhkRKo4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=na4aF0SXnBI:6wLjxhkRKo4:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/na4aF0SXnBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/another-overlooked-windows-setting-for-the-dba/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/another-overlooked-windows-setting-for-the-dba/</feedburner:origLink></item>
		<item>
		<title>An Often Overlooked Windows Setting for the DBA</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/9opMs0djDDU/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/an-often-overlooked-windows-setting-for-the-dba/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 14:07:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:357</guid>
		<description><![CDATA[The default setting is the wrong setting for SQL Server. However, unless this has caused you a problem or you are thorough to point of OCD, this may not be set on your server.
Unless you are fighting a memory bottleneck, it probably won’t affect you too much but it is hard to give SQL too [...]]]></description>
			<content:encoded><![CDATA[<p>The default setting is the wrong setting for SQL Server. However, unless this has caused you a problem or you are thorough to point of OCD, this may not be set on your server.</p>
<p>Unless you are fighting a memory bottleneck, it probably won’t affect you too much but it is hard to give SQL too much memory.</p>
<p>The setting is “Maximize Data Throughput for Network Applications” and on by default. It sounds like a good thing. To the contrary, here is documentation from MSDN.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178067.aspx">http://msdn.microsoft.com/en-us/library/ms178067.aspx</a></p>
<blockquote>
<p><b>Maximize Data Throughput for Network Applications</b></p>
<p>To optimize system memory use for SQL Server, you should limit the amount of memory that is used by the system for file caching. To limit the file system cache, make sure that <b>Maximize data throughput for file sharing</b> is not selected. You can specify the smallest file system cache by selecting <b>Minimize memory used</b> or <b>Balance</b>.</p>
<p>To check the current setting on your operating system</p>
<p>1. Click <b>Start</b>, then click <b>Control Panel</b>, double-click <b>Network Connections</b>, and then double-click <b>Local Area Connection</b>.</p>
<p>2. On the <b>General</b> tab, click <b>Properties</b>, select <b>File and Printer Sharing Microsoft Networks</b>, and then click <b>Properties</b>.</p>
<p>3. If <b>Maximize data throughput for network applications</b> is selected, choose any other option, click <b>OK</b>, and then close the rest of the dialog boxes.</p>
</blockquote>
<p>Happy Tweaking.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=9opMs0djDDU:tHYYsYRI8so:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=9opMs0djDDU:tHYYsYRI8so:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=9opMs0djDDU:tHYYsYRI8so:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=9opMs0djDDU:tHYYsYRI8so:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/9opMs0djDDU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/an-often-overlooked-windows-setting-for-the-dba/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/an-often-overlooked-windows-setting-for-the-dba/</feedburner:origLink></item>
		<item>
		<title>Linked Server Provider Options</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/yisUR4MfUWM/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/linked-server-provider-options/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 18:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Linked Servers]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:356</guid>
		<description><![CDATA[
Some of these are confusing so I thought I would write a blog on it. The post only refers to the SQLOLEDB and SQLNCLI providers.
Here are your options:

So In layman’s, let’s talk about each:
Dynamic Parameters: If you have a lot of adhoc queries against linked servers this may be a good option to turn on [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p>Some of these are confusing so I thought I would write a blog on it. The post only refers to the SQLOLEDB and SQLNCLI providers.</p>
<p>Here are your options:</p>
<p><a class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'87bb11bc'})" href="/Portals/0/images/News-Articles/WLW/LinkedServerProviderOptions_13F92/image_2.png"><img height="484" alt="image" width="540" border="0" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/LinkedServerProviderOptions_13F92/image_thumb.png" /></a></p>
<p>So In layman’s, let’s talk about each:</p>
<p><strong>Dynamic Parameters:</strong> If you have a lot of adhoc queries against linked servers this may be a good option to turn on along with forced parameterization. Search your proc cache for queries containing the linked server name with single use counts.</p>
<p><strong>Nested Queries: </strong>I would say that is depended on the business requirements.</p>
<p><strong>Level Zero Only: </strong>Leave default for SQL Server</p>
<p><strong>Allow InProcess:</strong> This is on by default with the native client provider but off by default with the SQLOLEDB provider. I might try changing to in process with OLEDB especially if context switches were high and % kernel time was high.</p>
<p><strong>Non Transacted Updates: </strong>I would really use caution with this. It is like a NOLOCK hint. It may be ok for the app but unintended consequences could happen. Besides, maintaining the transaction is probably a small part of the duration when you are hitting the network.</p>
<p><strong>IndexAsAccessPath</strong>: I make the mistake of turning this on once. It sounds like a good thing. To quote MSDN, “If <strong>True</strong>, the OLE DB provider indexes are used to fetch data. If <strong>False</strong> (default), the SQL Server indexes are used to fetch data.” Leave it false!</p>
<p><strong>Disable Adhoc Access:</strong> This depends. I would normal setup a linked server for administrative tasks and a lot of work would be adhoc but the linked server would be locked down.</p>
<p><strong>Supports “Like” operator:</strong> This also depends on business requirements but you are probably going to get crappy performance.&#8217;</p>
<p><strong>Hold up cowboy</strong></p>
<p>I would not run out and start changing stuff. Number one, avoid distributed queries in OLTP apps to begin with. Number Two, make one change at a time. Number three, if you change something and performance degrades you will probably see remote scan vs. remote queries in query plans.</p>
<div class="d_itc_f" style="clear: both; height: 11px"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=yisUR4MfUWM:ZxxTMct7RHc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=yisUR4MfUWM:ZxxTMct7RHc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=yisUR4MfUWM:ZxxTMct7RHc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=yisUR4MfUWM:ZxxTMct7RHc:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/yisUR4MfUWM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/linked-server-provider-options/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/linked-server-provider-options/</feedburner:origLink></item>
		<item>
		<title>The SAN, as we know it, will soon be Obsolete</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/LtulPeV4uTk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/the-san-as-we-know-it-will-soon-be-obsolete/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 12:17:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[editorial]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[SAN]]></category>

		<category><![CDATA[SSD]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:355</guid>
		<description><![CDATA[
 

The high end applications for mission critical business are mostly powered by EMC. Other companies like 3PAR, NetApp and HP are biting into their market dominance. However, EMC has a bigger problem looming.
I have written about Solid State Drives(SSD) before but the Intel business class drives are the only ones that come close to [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><a href="/Portals/0/images/News-Articles/WLW/TheSANaswellknowitwillsoonbeObsolete_12E1D/san_4.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'36c2f09a'})" ><img title="san" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 11px 0px 0px; border-left: 0px; border-bottom: 0px" height="147" alt="san" title="san" src="/Portals/0/images/News-Articles/WLW/TheSANaswellknowitwillsoonbeObsolete_12E1D/san_thumb_1.jpg" width="244" align="left" border="0" /></a> </p>
</p>
<p>The high end applications for mission critical business are mostly powered by EMC. Other companies like 3PAR, NetApp and HP are biting into their market dominance. However, EMC has a bigger problem looming.</p>
<p>I have written about Solid State Drives(SSD) before but the <a href="http://www.intel.com/design/flash/nand/extreme/index.htm" target="_blank">Intel business class drives</a> are the only ones that come close to being production ready due to random write speed. The other problems of price and capacity keep them out of reach for most companies. On the consumer side, the high end Seagate conventional drives beat most of the SSD drives on write performance.</p>
<p><strong>The stepping stone</strong></p>
<p>Tiered storage will probably be how SSD make their first appearance in production apps. Maybe SATA shelves for backups, SCSI or fiber channel drives for 80-90% of the data and SSD for the really hot data. </p>
<p>&#160;</p>
<p align="left"><strong>The game changer</strong></p>
<p align="left">FusionIO’s <a href="http://www.fusionio.com/PressDetails.php?id=69">latest press release</a> changed all of that. Imagine putting the capacity and performance of those 5 cabinets shown above in a shelf with 1% of the power requirements. Note: The TB+ capacity cards are coming Q2 2009. They currently support up 640GB. Here are some numbers on a 4 card setup:</p>
<div align="left">
<blockquote>
<p>Performance for multiple ioDrive Duos scales linearly, allowing any enterprise to scale performance to six gigabytes per-second (Gbytes/sec) of read bandwidth and over 500,000 read IOPS by using just four ioDrive Duos.</p>
</blockquote></div>
<p align="left">Here are single card numbers:</p>
<blockquote><p align="left">• Sustained read bandwidth: 1500 MB/sec (32k packet size)      <br />• Sustained write bandwidth: 1400 MB/sec (32k packet size)       <br />• Read IOPS: 186,000 (4k packet size)       <br />• Write IOPS: 167,000 (4k packet size)       <br />• Latency &lt; 50 µsec</p>
</blockquote>
<p><strong>What is missing?</strong></p>
<p>A chassis. Sure, you could put 4 or 6 of these in a server depending on how many slots you have but you are going to saturate the PCI bus before they are fully utilized. Before that happens, you will probably hit a CPU or memory bottleneck. The next logical step is a shelf that could handle 14-20 of these cards with plenty of fiber channel ports to hook up at least several servers. Will an 8GB fabric be fast enough? Until something like this happens, tiered storage is probably the way to go. I am sure they know this and are working on it. After all, <a href="http://en.wikipedia.org/wiki/Steve_Wozniak">The Woz</a> joined the company.</p>
<p><strong>Conclusion</strong></p>
<p>I wish I could buy stock in this company.    </p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=LtulPeV4uTk:tLYQkGrTE54:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=LtulPeV4uTk:tLYQkGrTE54:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=LtulPeV4uTk:tLYQkGrTE54:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=LtulPeV4uTk:tLYQkGrTE54:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/LtulPeV4uTk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/the-san-as-we-know-it-will-soon-be-obsolete/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/the-san-as-we-know-it-will-soon-be-obsolete/</feedburner:origLink></item>
		<item>
		<title>SQL Data Services Roundup</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/wT_a6VL8vn0/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/sql-data-services-roundup/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 03:07:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SDS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:353</guid>
		<description><![CDATA[SDS news has been flying all around the intertubes. I am going to try to summarize the links in this post. There is official “[This document supports a preliminary release of a software product that may be changed substantially prior to final commercial release. This document is provided for informational purposes only.]” on MSDN here.
 [...]]]></description>
			<content:encoded><![CDATA[<p>SDS news has been flying all around the intertubes. I am going to try to summarize the links in this post. There is official “[This document supports a preliminary release of a software product that may be changed substantially prior to final commercial release. This document is provided for informational purposes only.]” on MSDN <a href="http://msdn.microsoft.com/en-us/library/dd557595.aspx">here</a>.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd557595.aspx"><img src="http://i.msdn.microsoft.com/Dd557595.c1b8733b-6545-438a-9065-e4a43763691c(en-us,MSDN.10).gif" /></a> </p>
<p>Simon Sabin talks about it <a href="http://sqlblogcasts.com/blogs/simons/archive/2009/03/12/SDS-Architecture-in-the-cloud.aspx">here</a>.</p>
<p>The SDS team <a href="http://blogs.msdn.com/ssds/archive/2009/03/12/9471765.aspx">posts Q and A</a>.</p>
<p>Oh nevermind, just go <a href="http://friendfeed.com/mamund">here</a>. Mike Amundsen has links to everything SDS in his feed.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wT_a6VL8vn0:-YJ32Q1AOqI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wT_a6VL8vn0:-YJ32Q1AOqI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=wT_a6VL8vn0:-YJ32Q1AOqI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=wT_a6VL8vn0:-YJ32Q1AOqI:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/wT_a6VL8vn0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/sql-data-services-roundup/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/sql-data-services-roundup/</feedburner:origLink></item>
		<item>
		<title>Bacon Bits and Bytes</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/430KaNeo308/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/bacon-bits-and-bytes/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 02:50:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[BBNB]]></category>

		<category><![CDATA[crude]]></category>

		<category><![CDATA[humor]]></category>

		<category><![CDATA[Offtopic]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:352</guid>
		<description><![CDATA[Quick and to the point. This is a satirical and risqué blog on technologygadgetmicrosoftRDMS. Heck, anything is fair game. Some have already been offended but the great thing about the internet is you can click “back” and never return. To quote Brent, “Some people like Bill Cosby, some prefer Eddie Murphy, and a few like [...]]]></description>
			<content:encoded><![CDATA[<p>Quick and to the point. This is a satirical and risqué blog on technologygadgetmicrosoftRDMS. Heck, anything is fair game. Some have already been offended but the great thing about the internet is you can click “back” and never return. To quote Brent, “Some people like Bill Cosby, some prefer Eddie Murphy, and a few like both.” You like it or don’t, we are just going to do our own thing. </p>
<p>Remember everything we post is NSFW in some corporate environment but a lot of it will fly in laid back shops. All posts are meant to be humorous though they may be crude or juvenile. Some funnies just out right fail.</p>
<p>The chefs include:</p>
<p>Mystery man extraordinaire: Wilbur Applewood, aka <a href="http://twitter.com/baconbitsnbytes">BaconBitsNBytes on Twitter</a></p>
<p><a href="http://www.brentozar.com">Brent Ozar</a>, aka <a href="http://twitter.com/brento">BrentO on Twitter </a></p>
<p><a href="http://www.statisticsio.com">Jason Massie</a>, aka <a href="http://twitter.com/statisticsio">StatisticsIO on Twitter</a></p>
<p><a href="http://www.ford-it.com/sqlagentman">Tim Ford</a>, aka <a href="http://twitter.com/sqlagentman">SQLAgentMan on Twitter</a></p>
<p><a href="http://sqlbatman.com">Tom LaRock</a>, aka <a href="http://twitter.com/sqlbatman">SQLBatman on Twitter</a></p>
<p><a href="http://www.brentozar.com/archive/2009/03/new-nsfw-blog-baconbitsandbytescom/">Brent</a> and <a href="http://sqlbatman.com/2009/03/bacon-bits-and-bytes/">SQLBatman</a> both have posted better run downs.</p>
<p>So if you are feeling adventurous, <a href="http://baconbitsandbytes.com/">check it out</a>(<a href="http://baconbitsandbytes.com/feed/">Post RSS</a>, <a href="http://baconbitsandbytes.com/comments/feed/">Comment RSS</a>, <a href="http://feedburner.google.com/fb/a/mailverify?uri=BaconBitsAndBytes&amp;loc=en_US">Subscribe by email</a>, <a href="http://twitter.com/baconbitsnbytes">Twitter</a>).</p>
<p>Technical post on SQL Server and related topics will resume here.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=430KaNeo308:qD1W4_9XCK8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=430KaNeo308:qD1W4_9XCK8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=430KaNeo308:qD1W4_9XCK8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=430KaNeo308:qD1W4_9XCK8:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/430KaNeo308" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/bacon-bits-and-bytes/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/bacon-bits-and-bytes/</feedburner:origLink></item>
		<item>
		<title>The Bomb has been Dropped</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/Zkjit5DvYH0/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/the-bomb-has-been-dropped/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:40:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[SDS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:351</guid>
		<description><![CDATA[SQL Data Services will be a relational database that has most of the features of SQL Server.
To quote David Campbell:
Tables?&#8230;Check
Stored Procedures?&#8230;Check
Triggers?&#8230;Check
Views?&#8230;Check
Indexes?&#8230;Check
Visual Studio Compatibility?&#8230;Check
ADO.Net Compatibility?&#8230;Check
ODBC Compatibility?&#8230;Check

Read about it here.

]]></description>
			<content:encoded><![CDATA[<p>SQL Data Services will be a relational database that has most of the features of SQL Server.</p>
<p>To quote David Campbell:</p>
<blockquote><p>Tables?&#8230;Check</p>
<p>Stored Procedures?&#8230;Check</p>
<p>Triggers?&#8230;Check</p>
<p>Views?&#8230;Check</p>
<p>Indexes?&#8230;Check</p>
<p>Visual Studio Compatibility?&#8230;Check</p>
<p>ADO.Net Compatibility?&#8230;Check</p>
<p>ODBC Compatibility?&#8230;Check</p>
</blockquote>
<p><a href="http://blogs.msdn.com/ssds/archive/2009/03/10/9469228.aspx" target="_blank">Read about it here</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Zkjit5DvYH0:k2xLHFTVC4g:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Zkjit5DvYH0:k2xLHFTVC4g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Zkjit5DvYH0:k2xLHFTVC4g:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Zkjit5DvYH0:k2xLHFTVC4g:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/Zkjit5DvYH0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/the-bomb-has-been-dropped/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/the-bomb-has-been-dropped/</feedburner:origLink></item>
		<item>
		<title>The New Version of SQL Data Services</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/R5M93bK2GGE/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/the-new-version-of-sql-data-services/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 07:06:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[SDS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:350</guid>
		<description><![CDATA[Up late making some changes on a large SQL 2000 publication and hoping like hell that I do not have to push the full snapshot.
Anyway, just a link post but Dave Robinson dropped a real teaser on the forthcoming “rewrite” of SDS here. As always, Mary Jo Foley has the rumors. Pay attention to Mix [...]]]></description>
			<content:encoded><![CDATA[<p>Up late making some changes on a large SQL 2000 publication and hoping like hell that I do not have to push the full snapshot.</p>
<p>Anyway, just a link post but <a href="http://blogs.msdn.com/drobinson/default.aspx" target="_blank">Dave Robinson</a> dropped a real teaser on the forthcoming “rewrite” of SDS <a href="http://blogs.msdn.com/drobinson/archive/2009/03/07/getting-ready-to-re-surface.aspx" target="_blank">here</a>. As always, Mary Jo Foley has <a href="http://blogs.zdnet.com/microsoft/?p=2162" target="_blank">the rumors</a>. Pay attention to <a href="http://2009.visitmix.com" target="_blank">Mix</a> which is <a href="http://search.twitter.com/search?q=%23mix09" target="_blank">#mix09</a> on twitter.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R5M93bK2GGE:3lR3UXrvoSk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R5M93bK2GGE:3lR3UXrvoSk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R5M93bK2GGE:3lR3UXrvoSk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R5M93bK2GGE:3lR3UXrvoSk:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/R5M93bK2GGE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/the-new-version-of-sql-data-services/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/the-new-version-of-sql-data-services/</feedburner:origLink></item>
		<item>
		<title>MVP Summit 2009 After Hours Part 1</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/Pon82lOx9WA/</link>
		<comments>http://blog.statisticsio.com/archive/2009/03/mvp-summit-2009-after-hours-part-1/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 04:43:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[conferences]]></category>

		<category><![CDATA[SDS]]></category>

		<category><![CDATA[SQL Server 11]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:349</guid>
		<description><![CDATA[
What happens in Seattle doesn’t stay in Seattle. I could not take pictures during the day because &#60;nda&#62; and &#60;nda&#62; cannot be announced yet. However, database diapers is fair game.
Anyway, here is part 1. Video next.
&#160;
Click.

Here is the link the the original post if it doesn’t syndicate right.

]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p>What happens in Seattle doesn’t stay in Seattle. I could not take pictures during the day because &lt;nda&gt; and &lt;nda&gt; cannot be announced yet. However, <a href="http://search.twitter.com/search?q=&quot;database+diaper&quot;">database diapers</a> is fair game.</p>
<p>Anyway, here is part 1. Video next.</p>
<p>&#160;</p>
<p><strong><u><a href="http://www.flickr.com/photos/12228938@N06/sets/72157614897834436/show/"  class="itcexpando" onclick="return mp.htmlExpand(this, { objectType: 'iframe',width:1024,height:768 } )">Click.</a></u></strong></p>
<p align="center"><strong><u></u></strong></p>
<p align="left"><a href="/Home/tabid/36/articleType/ArticleView/articleId/349/MVP-Summit-2009-After-Hours-Part-1.aspx">Here is the link the the original post if it doesn’t syndicate right.</a></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Pon82lOx9WA:DlCdBYUwi0w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Pon82lOx9WA:DlCdBYUwi0w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Pon82lOx9WA:DlCdBYUwi0w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Pon82lOx9WA:DlCdBYUwi0w:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/Pon82lOx9WA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/03/mvp-summit-2009-after-hours-part-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/03/mvp-summit-2009-after-hours-part-1/</feedburner:origLink></item>
		<item>
		<title>Offtopic: Gamer Tag</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/GarOM-4uTkE/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/offtopic-gamer-tag/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 02:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Offtopic]]></category>

		<category><![CDATA[social computing]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:346</guid>
		<description><![CDATA[I finally signed up for xbox live. My gamer tag is Captain Varchar. Right now, I am just playing Left 4 Dead. However, it is hard as hell but let&#8217;s kills some zombies! Next week, it is will be Halo Wars after I get back from the MVP Summit.
&#160;
Captain Varchar
]]></description>
			<content:encoded><![CDATA[<p>I finally signed up for xbox live. My gamer tag is Captain Varchar. Right now, I am just playing Left 4 Dead. However, it is hard as hell but let&#8217;s kills some zombies! Next week, it is will be Halo Wars after I get back from the MVP Summit.</p>
<p>&#160;</p>
<p><iframe height="140" src="http://gamercard.xbox.com/Captain%20Varchar.card" frameborder="0" width="204" scrolling="no">Captain Varchar</iframe></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=GarOM-4uTkE:RYtb8R8J1Is:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=GarOM-4uTkE:RYtb8R8J1Is:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=GarOM-4uTkE:RYtb8R8J1Is:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=GarOM-4uTkE:RYtb8R8J1Is:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/GarOM-4uTkE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/offtopic-gamer-tag/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/offtopic-gamer-tag/</feedburner:origLink></item>
		<item>
		<title>Off Topic: Boogers</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/Rb0Jka2DjHA/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/off-topic-boogers/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 01:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:345</guid>
		<description><![CDATA[&#160;Here is a way off topic post. The music in this mix of house and techno is definately an aquired taste.&#160;


So if you have a favorite radio station, have even heard of the doobie brothers, or thought Cyndi Lauper was cool, move along now. My next mix will an 80&#8217;s mix.&#160;


This is weird and obsure [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;Here is a way off topic post. The music in this mix of house and techno is definately an aquired taste.&#160;</p>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><br />
</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">So if you have a favorite radio station, have even heard of the doobie brothers, or thought Cyndi Lauper was cool, move along now. My next mix will an 80&#8217;s mix.&#160;</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><br />
</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">This is weird and obsure stuff from the left side of the brain out of Germany, London, Chicago, Detroit and Dallas among others. Seriously, baby kittens die every time this played.&#160;</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><br />
</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><a href="http://statisticsio.com/jmass_boogers0209.mp3">http://statisticsio.com/jmass_boogers0209.mp3</a></span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><br />
</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Tracklisting:</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Glenn Underground - Mental Fusion (This Is A Tribute To Azmuth) - Difficult Soul</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">[a]pendics.shuffle - on yo back - Friends of Tomorrow</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">BEYER, Steven - Stupid Thing - Lørdag</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Heartthrob - Grounded - M_nus</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">D5 - RUN - Delsin</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">DJ TV meets TORT - A Good Foundation &amp; Other Tales (original mix) - The Mansion Spain</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">FRITOS - Bajando Al Sotano (Martin Gioia version) - Up And At &#8216;Em</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Levon Vincent - Love Technique (Original Mix) - Ovum Recordings</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">DBX - Baby Judy - Accelerate</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Convextion - Desolate Hub - Downlow Music</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Maetrik- Tool Two - Treibstoff</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Redshape - Steam - Delsin</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Shed - Handle With Care II - Original Mix - Delsin</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Redshape - Plonk (Original) - Present</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Claude VonStroke - Who&#8217;s Afraid Of Detroit? (Audion Remix) - Dirtybird</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">shed - guile - Delsin</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">John Tejada &amp; Arian Leviste - Intuition - Playhouse</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">fabrice lig - the riff pourpre - Versatile</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">JOHNSON, Brett - Twiddle Sticks - Frankie</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">SOZONOV- Thoughts Aloud (original mix) - Artefekz Muzik</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Andy Stott - Talk Touch - Modern Love</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Jeff Samuel - Heb.Gbz - Spectral Sound</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Dan Curtin - Space Politics - Autoreply</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">TAPIA, Ramon - UFO - Great Stuff</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Marc Houle - bay of figs - M_nus</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Magda - Sadm (Mark Henning reflected loop) - Promo</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">LSIBOA &amp; PTRUCCI - Micro Drama (original mix) - Attary</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Heartthrob - Out of Here (Original Mix) - M_nus</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Swayzak - Blufarm - Pagan</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">troy pierce-25 Bitches (Matt John&#8217;s 25 Pitches Remix) - M_nus</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Audion - your place or mine - Spectral Sound</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Maetrik - Cologne and back - Treibstoff</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">Claro Intelecto - Thieves - Modern Love</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">SHAHROKH SOUND OF K - Love Happens (feat Toyin Taylor - Roberto Rodriguez remix - long version) - Compost</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">BRAUN, James - The Shakers - Tartelet</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">KRUSE/NUERNBERG - An Why E - Save Room Recordings</span></div>
<div><span class="Apple-style-span" style="color: rgb(0, 0, 0);">DUNDOV, Petar - Oasis (Substance &amp; Vainqueur remix) - Music Man</span></div>
<div>&#160;</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Rb0Jka2DjHA:iresuiQhbdA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Rb0Jka2DjHA:iresuiQhbdA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=Rb0Jka2DjHA:iresuiQhbdA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=Rb0Jka2DjHA:iresuiQhbdA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/Rb0Jka2DjHA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/off-topic-boogers/feed/</wfw:commentRss>
<enclosure url="http://statisticsio.com/jmass_boogers0209.mp3" length="196529632" type="audio/mpeg" />
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/off-topic-boogers/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and the Pagelatch Posse Vol. 21</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/aN-RXg0UtS8/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-21/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 18:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:344</guid>
		<description><![CDATA[
Ninja Fog

The cloud has been all the buzz this week. Paul makes a prediction, Denis talks about the challenges, Steve chimes in and the register reports that Microsoft plans to release a full featured SQL Server to cloud. I have talked about this before but I got nothing but ninja fog today.
&#160;
This comic was adapted [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>Ninja Fog</strong></p>
<p><a class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'0485b375'})" href="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.21_AC39/NinjaFog_2.jpg"><img title="NinjaFog" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="NinjaFog" width="405" border="0" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.21_AC39/NinjaFog_thumb.jpg" /></a></p>
<p>The cloud has been all the buzz this week. <a target="_blank" href="http://sqlblog.com/blogs/paul_nielsen/archive/2009/02/24/sql-in-the-cloud.aspx">Paul makes a prediction</a>, <a target="_blank" href="http://sqlblog.com/blogs/denis_gobo/archive/2009/02/25/12206.aspx">Denis talks about the challenges,</a> <a target="_blank" href="http://www.sqlservercentral.com/blogs/steve_jones/archive/2009/02/25/a-cloudy-story.aspx">Steve chimes in</a> and the register reports that Microsoft plans to release a <a target="_blank" href="http://www.theregister.co.uk/2009/02/23/sql_server_azure/">full featured SQL Server to cloud</a>. I have talked about this before but I got nothing but <a target="_blank" href="http://www.urbandictionary.com/define.php?term=ninja+fog">ninja fog</a> today.</p>
<p>&#160;</p>
<p>This comic was adapted from <a target="_blank" href="http://blogs.msdn.com/officeoffline">OfficeOFFline</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=aN-RXg0UtS8:7WM-N6BYcSg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=aN-RXg0UtS8:7WM-N6BYcSg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=aN-RXg0UtS8:7WM-N6BYcSg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=aN-RXg0UtS8:7WM-N6BYcSg:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/aN-RXg0UtS8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-21/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-21/</feedburner:origLink></item>
		<item>
		<title>SQL Blog Readership Numbers</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/JZBgIWDyivs/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/sql-blog-readership-numbers/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 05:02:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Offtopic]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:343</guid>
		<description><![CDATA[I have been mining publicly available numbers out of Google reader for the last couple weeks for frequent published sql blogs. I am going to present the numbers but let me make some points.

The fanboy Microsoft DBA is probably using Outlook 2007 as their RSS reader. I made the exchange server cry when I tried [...]]]></description>
			<content:encoded><![CDATA[<p>I have been mining publicly available numbers out of Google reader for the last couple weeks for frequent published sql blogs. I am going to present the numbers but let me make some points.</p>
<ul>
<li>The fanboy Microsoft DBA is probably using Outlook 2007 as their RSS reader. I made the exchange server cry when I tried this. These numbers are only google reader stats.
<li>My number is about 50% of what feedburner says for my site. However, take that with a grain of salt.
<li>There are some travesties. However, I am posting data not opinions. I will leave the opinions up to you.
<li>100-200 level blogs seem popular.</li>
</ul>
<p>&nbsp;</p>
<p> <meta content="Excel.Sheet" name="ProgId"> <rel="Main-File">
<link href="filelist.xml" rel="File-List">
<link href="stylesheet.css" ><rel="Stylesheet"><br />
<style>
<!--table
	{mso-displayed-decimal-separator:".";
	mso-displayed-thousand-separator:",";}
@page
	{margin:.75in .7in .75in .7in;
	mso-header-margin:.3in;
	mso-footer-margin:.3in;}
-->
</style>
<p>  <script language="JavaScript">
<!--
function fnUpdateTabs()
 {
  if (parent.window.g_iIEVer>=4) {
   if (parent.document.readyState==&#8221;complete&#8221;
    &#038;&#038; parent.frames['frTabs'].document.readyState==&#8221;complete&#8221;)
   parent.fnSetActiveSheet(0);
  else
   window.setTimeout(&#8221;fnUpdateTabs();&#8221;,150);
 }
}</p>
<p>//&#8211;>
</script><br />
<table style="table-layout: fixed; width: 642pt; border-collapse: collapse" cellspacing="0" cellpadding="0" width="855" border="0">
<colgroup> <col style="width: 83pt; mso-width-source: userset; mso-width-alt: 4022" width="110"> <col style="width: 511pt; mso-width-source: userset; mso-width-alt: 24905" width="681"> <col style="width: 48pt" width="64"><br />
<tbody>
<tr style="height: 15pt" height="20">
<td class="xl67" style="width: 83pt; height: 15pt" width="110" height="20">SubscriberCount</td>
<td class="xl67" style="width: 511pt" width="681">RSS Feed</td>
<td style="width: 48pt" width="64"></td>
</tr>
<tr style="height: 15pt" height="20">
<td class="xl66" style="height: 15pt" align="right" height="20">1,460</td>
<td class="xl65"><a href="http://blog.sqlauthority.com/feed/" target="_parent">http://blog.sqlauthority.com/feed/</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td class="xl66" style="height: 15pt" align="right" height="20">1,407</td>
<td class="xl65"><a href="http://sqlblog.com/blogs/MainFeed.aspx" target="_parent">http://sqlblog.com/blogs/MainFeed.aspx</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">725</td>
<td class="xl65"><a href="http://blogs.msdn.com/psssql/rss.xml" target="_parent">http://blogs.msdn.com/psssql/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">521</td>
<td class="xl65"><a href="http://blogs.msdn.com/gertd/rss.xml" target="_parent">http://blogs.msdn.com/gertd/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">360</td>
<td class="xl65"><a href="http://blogs.msdn.com/buckwoody/rss.xml" target="_parent">http://blogs.msdn.com/buckwoody/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">317</td>
<td class="xl65"><a href="http://blogs.technet.com/dataplatforminsider/rss.xml" target="_parent">http://blogs.technet.com/dataplatforminsider/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">284</td>
<td class="xl65"><a href="http://feeds.feedburner.com/SqlteamcomWeblogs" target="_parent">http://feeds.feedburner.com/SqlteamcomWeblogs</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">273</td>
<td class="xl65"><a href="http://blogs.technet.com/andrew/rss.xml" target="_parent">http://blogs.technet.com/andrew/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">221</td>
<td><span style="mso-spacerun: yes">&nbsp;</span><a href="http://www.microsoft.com/feeds/msdn/en-us/sql/sqldev_en_us.xml" target="_blank">http://www.microsoft.com/feeds/msdn/en-us/sql/sqldev_en_us.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">207</td>
<td class="xl65"><a href="http://feeds.feedburner.com/statisticsio" target="_parent">http://feeds.feedburner.com/statisticsio</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">175</td>
<td class="xl65"><a href="http://blogs.msdn.com/sqlsecurity/rss.xml" target="_parent">http://blogs.msdn.com/sqlsecurity/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">144</td>
<td class="xl65"><a href="http://itknowledgeexchange.techtarget.com/sql-server/feed/" target="_parent">http://itknowledgeexchange.techtarget.com/sql-server/feed/</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">141</td>
<td class="xl65"><a href="http://glennberrysqlperformance.spaces.live.com/feed.rss" target="_parent">http://glennberrysqlperformance.spaces.live.com/feed.rss</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">126</td>
<td class="xl65"><a href="http://blogs.msdn.com/sqlserverue/rss.xml" target="_parent">http://blogs.msdn.com/sqlserverue/rss.xml</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">123</td>
<td class="xl65"><a href="http://www.brentozar.com/feed/" target="_parent">http://www.brentozar.com/feed/</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">88</td>
<td class="xl65"><a href="http://feeds.feedburner.com/SqlInTheWild" target="_parent">http://feeds.feedburner.com/SqlInTheWild</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">61</td>
<td class="xl65"><a href="http://blogs.lessthandot.com/index.php/All/?tempskin=_rss2" target="_parent">http://blogs.lessthandot.com/index.php/All/?tempskin=_rss2</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">47</td>
<td class="xl65"><a href="http://chrisshaw.wordpress.com/feed/" target="_parent">http://chrisshaw.wordpress.com/feed/</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">33</td>
<td class="xl65"><a href="http://sqlbatman.com/feed/" target="_parent">http://sqlbatman.com/feed/</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">29</td>
<td class="xl65"><a href="http://sqlserverpedia.com/blog/?feed=rss2" target="_parent">http://sqlserverpedia.com/blog/?feed=rss2</a></td>
<td></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">13</td>
<td class="xl65" style="mso-ignore: colspan" colspan="2"><a href="http://www.sqlpass.org/DesktopModules/DnnForge%20-%20NewsArticles/Rss.aspx?TabID=75&amp;ModuleID=494" target="_parent">http://www.sqlpass.org/DesktopModules/DnnForge%20-%20NewsArticles/Rss.aspx?TabID=75&amp;ModuleID=494</a></td>
</tr>
<tr style="height: 15pt" height="20">
<td style="height: 15pt" align="right" height="20">5</td>
<td class="xl65"><a href="http://blogs.msdn.com/search/Searchrss.aspx?q=sql&amp;o=DateDescending" target="_parent">http://blogs.msdn.com/search/Searchrss.aspx?q=sql&amp;o=DateDescending</a></td>
<td></td>
</tr>
</tbody>
</table>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JZBgIWDyivs:TJDEfnxc-Qw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JZBgIWDyivs:TJDEfnxc-Qw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JZBgIWDyivs:TJDEfnxc-Qw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JZBgIWDyivs:TJDEfnxc-Qw:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/JZBgIWDyivs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/sql-blog-readership-numbers/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/sql-blog-readership-numbers/</feedburner:origLink></item>
		<item>
		<title>Firefighting with Wait Stats</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/QWTy-10wOqU/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/firefighting-with-wait-stats/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 13:28:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[DMV's]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:342</guid>
		<description><![CDATA[Wait stats analysis is a great skill to have in your arsenal. There are lots of tools out there already. I also suggest you read Tom Davidson&#8217;s whitepaper on it if you need background on this topic. There was a niche missing in my toolbox. You see, these stats are cumulative since the instance has [...]]]></description>
			<content:encoded><![CDATA[<p>Wait stats analysis is a great skill to have in your arsenal. There are lots of <a href="http://www.google.com/search?rlz=1C1GGLS_enUS291US304&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=sys.dm_os_wait_stats" target="_blank">tools out there already</a>. I also suggest you read Tom Davidson&#8217;s <a href="http://download.microsoft.com/download/4/7/a/47a548b9-249e-484c-abd7-29f31282b04d/Performance_Tuning_Waits_Queues.doc" target="_blank">whitepaper on it if you need background on this topic.</a> There was a niche missing in my toolbox. You see, these stats are cumulative since the instance has started or you clear with DBCC SQLPERF(WAITSTATS, CLEAR). </p>
<p>Whatever sys.dm_os_wait_stats reports as the highest waiter may have happened last week. If you want to know what is hammering the server now, you can look at several different DMV&#8217;s like sys.dm_exec_requests but that data is transient. My rough code (all my code is rough) below will tell you what the server has been waiting for in the last second of time. It is definitely a firefighting &#8220;WTF is going on right now&#8221; query. It would also complement <a href="/Home/tabid/36/articleType/ArticleView/articleId/169/categoryId/14/CXPACKET-MAXDOP-and-your-OLTP-system.aspx" target="_blank">this query</a> when fighting fires.</p>
<p>Read <a href="http://download.microsoft.com/download/4/7/a/47a548b9-249e-484c-abd7-29f31282b04d/Performance_Tuning_Waits_Queues.doc" target="_blank">the whitepaper</a> for a better explanation but, basically, there are two buckets of waits. Signal waits which are actual waits on CPU execution time. The others are resource waits which means SQL is waiting on other stuff like a locks, latches, log writes, memory etc. Again <a href="http://download.microsoft.com/download/4/7/a/47a548b9-249e-484c-abd7-29f31282b04d/Performance_Tuning_Waits_Queues.doc" target="_blank">the whitepaper</a> does a great job correlating these sometimes cryptic names with resources.</p>
<p>Lastly, analyzing wait types goes hand and hand with perfmon. For example, you have both high CPU and high IO in perfmon. This script can help you see what SQL is actually waiting on the most so you can tackle that problem first.</p>
<p><code style="font-size: 12px"><span style="color: blue">SELECT </span><span style="color: black">wait_type <br /></span><span style="color: gray">,</span><span style="color: black">signal_wait_time_ms </span><span style="color: blue">AS </span><span style="color: red">&#8216;CPU&#8217; <br /></span><span style="color: gray">,</span><span style="color: black">wait_time_ms </span><span style="color: gray">- </span><span style="color: black">signal_wait_time_ms </span><span style="color: blue">AS </span><span style="color: red">&#8216;Resource&#8217; <br /></span><span style="color: blue">INTO </span><span style="color: #434343">#temp <br /></span><span style="color: blue">FROM </span><span style="color: black">sys.dm_os_wait_stats <br /></span><span style="color: blue">WHERE </span><span style="color: black">wait_time_ms </span><span style="color: gray">&lt;&gt; </span><span style="color: black">0 </p>
<p></span><span style="color: blue">WAITFOR </span><span style="color: black">DELAY </span><span style="color: red">&#8216;00:00:01&#8242; </p>
<p></span><span style="color: blue">SELECT </span><span style="color: black">a.wait_type <br /></span><span style="color: gray">, </span><span style="color: black">signal_wait_time_ms</span><span style="color: gray">-</span><span style="color: black">cpu </span><span style="color: blue">AS </span><span style="color: black">CPUDiff <br /></span><span style="color: gray">, (</span><span style="color: black">wait_time_ms </span><span style="color: gray">- </span><span style="color: black">signal_wait_time_ms</span><span style="color: gray">)-</span><span style="color: black">[resource] </span><span style="color: blue">AS </span><span style="color: black">ResourceDiff <br /></span><span style="color: blue">FROM </span><span style="color: black">sys.dm_os_wait_stats a </span><span style="color: blue">JOIN </span><span style="color: #434343">#TEMP </span><span style="color: black">b </span><span style="color: blue">ON </span><span style="color: black">a.wait_type</span><span style="color: blue">=</span><span style="color: black">b.wait_type <br /></span><span style="color: blue">ORDER BY </span><span style="color: black">2 </span><span style="color: blue">DESC </p>
<p>DROP TABLE </span><span style="color: #434343">#temp</span></code></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=QWTy-10wOqU:5lzUrX3JDzE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=QWTy-10wOqU:5lzUrX3JDzE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=QWTy-10wOqU:5lzUrX3JDzE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=QWTy-10wOqU:5lzUrX3JDzE:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/QWTy-10wOqU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/firefighting-with-wait-stats/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/firefighting-with-wait-stats/</feedburner:origLink></item>
		<item>
		<title>Calling out Adam Machanic</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/swBw9HZRIx4/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/calling-out-adam-machanic/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 08:14:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[humor]]></category>

		<category><![CDATA[Offtopic]]></category>

		<category><![CDATA[social computing]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:341</guid>
		<description><![CDATA[I am just saying&#8230; I read the comments and I thought I should post. If he followed everyone on this list and this list with a real client he would see the value. NNTP = Dead except for those who do not understand search engine syntax. Blogs are not status updates any more.
So I challenge [...]]]></description>
			<content:encoded><![CDATA[<p>I am just saying&#8230; I read <a href="http://weblogs.sqlteam.com/markc/archive/2009/02/21/60847.aspx" target="_blank">the comments</a> and I thought I should post. If he followed everyone on <a href="/Home/tabid/36/articleType/ArticleView/articleId/217/Cool-SQL-People-that-I-Follow-on-Twitter.aspx" target="_blank">this list</a> and <a href="http://sqlserverpedia.com/wiki/Twitter" target="_blank">this list</a> with a <a href="http://twitter.com/downloads" target="_blank">real client</a> he would see the value. NNTP = Dead except for those who do not understand search engine syntax. Blogs are not status updates any more.</p>
<p>So I challenge Adam and you if you are not on twitter to follow these people for a month with a real client and post your status.</p>
<p>Make sure you get me <a href="http://twitter.com/statisticsio" target="_blank">@statisticsio</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=swBw9HZRIx4:-8RQhWeQlxo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=swBw9HZRIx4:-8RQhWeQlxo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=swBw9HZRIx4:-8RQhWeQlxo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=swBw9HZRIx4:-8RQhWeQlxo:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/swBw9HZRIx4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/calling-out-adam-machanic/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/calling-out-adam-machanic/</feedburner:origLink></item>
		<item>
		<title>Capt Varchar(MAX) and the Pagelatch Posse Vol. 20</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/42w30Bg5WIY/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-20/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 21:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:340</guid>
		<description><![CDATA[
6 degrees of Virtualization

You might think this is funny(or not) but this will be happening sooner or later.

]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script></p>
<p><strong>6 degrees of Virtualization</strong></p>
<p><a class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'c8ee5343'})" href="/Portals/0/images/News-Articles/WLW/CaptVarcharMAXandthePagelatchPosseVol.20_D596/TooMuchVirtualization_2.jpg"><img title="TooMuchVirtualization" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="TooMuchVirtualization" width="405" border="0" src="http://statisticsio.com/Portals/0/images/News-Articles/WLW/CaptVarcharMAXandthePagelatchPosseVol.20_D596/TooMuchVirtualization_thumb.jpg" /></a></p>
<p>You might think this is funny(or not) but this will be happening <a href="http://www.informationweek.com/blog/main/archives/2008/11/next_vmware_tac.html">sooner or later</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=42w30Bg5WIY:z1MWQLmbWfY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=42w30Bg5WIY:z1MWQLmbWfY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=42w30Bg5WIY:z1MWQLmbWfY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=42w30Bg5WIY:z1MWQLmbWfY:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/42w30Bg5WIY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-20/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/capt-varcharmax-and-the-pagelatch-posse-vol-20/</feedburner:origLink></item>
		<item>
		<title>Lessons Learned with SQL Server on VMWare</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/R-gYgK2-Zv8/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/lessons-learned-with-sql-server-on-vmware/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 14:11:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[utility computing]]></category>

		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:339</guid>
		<description><![CDATA[This past weekend I asked the community(or at least my twitter feed) what they thought about virtualized database servers. Lots of people use it in DevTestQA. Some in prod. Some thought it was pointless. Before I go over my lessons learned, let me address the “pointless” point. 
It could be argued that it adds another [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I <a href="/Home/tabid/36/articleType/ArticleView/articleId/336/Community-Thoughts-on-Database-Server-Virtualization.aspx" target="_blank">asked the community</a>(or at least my twitter feed) what they thought about virtualized database servers. Lots of people use it in DevTestQA. Some in prod. Some thought it was pointless. Before I go over my lessons learned, let me address the “pointless” point. </p>
<p>It could be argued that it adds another unneeded level since you could do this with instances. For that matter, you can use one instance and permissions. This is true. If you are consolidating just a few instances, the cost and overhead probably doesn’t justify virtualization. However, there are other benefits like VMotion or adding capacity horizontally. You can’t easily move two instances off an over utilized box. With ESX, you can do this online while transactions are in flight. Added redundancy is also a benefit.</p>
<p>So here are my lessons learned:</p>
<p><strong>Beware of CPU bound workloads</strong></p>
<p>Most database workloads are IO bound even if it is logical IO’s. However, if your database is really small but you do lot of complex calculations, lots of business logic or string manipulations etc, your performance may suffer more than you would expect.</p>
<p><strong>Use x64</strong></p>
<p>This is just a <a href="http://www.vmware.com/files/pdf/SQLServerWorkloads.pdf" target="_blank">vendor recommendation</a> that suggests a 10% gain.</p>
<p><strong>Don’t trust the CPU counters</strong></p>
<p>Another thing I learned from the <strong><a href="http://www.vmware.com/files/pdf/SQLServerWorkloads.pdf" target="_blank">whitepaper</a></strong>. The CPU ready counter in Virtual Center is very useful.</p>
<p><strong>Set a memory reservation</strong></p>
<p>I would at least reserve half of the memory given to the guest especially if the host is busy. ESX has a balloon driver that will take memory from guests if it needs it and it thinks the guest is idle. This usually is not good for database servers.</p>
<p><strong>The Microsoft Windows Server 2003 Scalable Networking Pack is evil</strong></p>
<p>This is enabled by default with Windows Server 2003 sp2 and it doesn’t play well with SQL Server, VM’s and especially SQL Server on VM’s. <a href="/Home/tabid/36/articleType/ArticleView/articleId/305/TCP-Chimney-Offload.aspx" target="_blank">See this post</a>.</p>
<p><strong>You have to sector align TWICE</strong></p>
<p>First you have to sector align the vmfs and then at the OS level. Here is <a href="http://www.vmware.com/pdf/esx3_partition_align.pdf" target="_blank">VMWare recommendations</a>. I agree with <a href="http://kendalvandyke.blogspot.com/2009/02/disk-performance-hands-on-series.html" target="_blank">Kendal’s recent finding</a> of 128k offsets and 64k NT allocation unit based on my own testing. </p>
<p><strong>If you have a lot of SQL VM’s on a host, see if EE makes sense</strong></p>
<p>With Enterprise Edition, you only have to license the host. If you use standard edition, you must license each guest. If no EE features are needed, “lock pages in memory” alone, may be enough. In addition to other problems it solves, you can <a href="http://www.vmware.com/files/pdf/large_pg_performance.pdf" target="_blank">enable large page support</a>.</p>
<p><strong>Bad code usually runs worse on a VM</strong></p>
<p>Man, the weather has been nice. How about them cowboys!</p>
<p>&#160;</p>
<p>Anyway, do you have any lessons learned running SQL on VMWare..</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R-gYgK2-Zv8:0gTqNgtnboQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R-gYgK2-Zv8:0gTqNgtnboQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=R-gYgK2-Zv8:0gTqNgtnboQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=R-gYgK2-Zv8:0gTqNgtnboQ:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/R-gYgK2-Zv8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/lessons-learned-with-sql-server-on-vmware/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/lessons-learned-with-sql-server-on-vmware/</feedburner:origLink></item>
		<item>
		<title>Why People are still on SQL Server 2000</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/ftY1a7O7WCQ/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/why-people-are-still-on-sql-server-2000/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 18:44:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[social computing]]></category>

		<category><![CDATA[SQL Server 2000]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:337</guid>
		<description><![CDATA[I asked 1200 tweeple if and why they are still running SQL Server 2000. The results are interesting. It appear vendors *are* evil.
     statisticsio: How many people are still running SQL2000? Why? When are you going to SQL2008? If not, why? No comments from the OracleMySQL pnut gallery.



jasoncrider: we are still [...]]]></description>
			<content:encoded><![CDATA[<p>I asked 1200 tweeple if and why they are still running SQL Server 2000. The results are interesting. It appear vendors *are* evil.</p>
<p><a href="">     <br /><img style="margin: 0px 12px 0px 0px; display: inline" align="left" src="http://s3.amazonaws.com/twitter_production/profile_images/70357919/jm_normal.jpg" /></a><strong><a href="http://twitter.com/statisticsio">statisticsio</a>:</strong> How many people are still running SQL2000? Why? When are you going to SQL2008? If not, why? No comments from the OracleMySQL pnut gallery.</p>
<p></p>
<div style="padding-bottom: 30px; padding-left: 30px; width: 350px; padding-right: 30px; clear: left; padding-top: 30px">
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://jasoncrider.com/blog" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/78161225/100_0086_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/jasoncrider" rel="nofollow">jasoncrider</a>:</strong> we are still mostly 2000. Biggest reason is training and money. We wouldn&#8217;t be moving towards 2005 if I didn&#8217;t push.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 14 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/jasoncrider/statuses/1219804324" rel="nofollow">Tue Feb 17 18:22:48 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.bofe.org" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/60354377/photo_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/bofe" rel="nofollow">bofe</a>:</strong> We&#8217;re still running SQL2000 because a vendor&#8217;s product won&#8217;t work with 2005/2008.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 14 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/bofe/statuses/1219803834" rel="nofollow">Tue Feb 17 18:22:40 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.bucketofbits.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/66171753/tmitch_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/Tim_Mitchell" rel="nofollow">Tim_Mitchell</a>:</strong> Some apps still on SQL2K due to $%*! vendor requirements. Those that we fully control will be on SQL08 this yr or early next
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 24 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/Tim_Mitchell/statuses/1219771768" rel="nofollow">Tue Feb 17 18:13:09 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.nathanblevins.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/72020406/Staby_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/nathanblevins" rel="nofollow">nathanblevins</a>:</strong> Not to mention that upgrading is a &#8216;dark and scary place&#8217; for many folk who have not been keeping up w/ the Jones&#8217;
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 27 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/nathanblevins/statuses/1219760042" rel="nofollow">Tue Feb 17 18:09:42 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.nathanblevins.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/72020406/Staby_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/nathanblevins" rel="nofollow">nathanblevins</a>:</strong> My client still runs 2k on quite a few of their projects. Much like @<a href="http://twitter.com/wbm" rel="nofollow">wbm</a> &#8217;s clients, they have no real need to change.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 28 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/nathanblevins/statuses/1219755919" rel="nofollow">Tue Feb 17 18:08:30 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://tweeple.blogspot.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/77457886/cell_capsule_doll_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/The_BORG" rel="nofollow">The_BORG</a>:</strong> Legacy software still in use (at work). Lame. Yes I know.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 32 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/The_BORG/statuses/1219745188" rel="nofollow">Tue Feb 17 18:05:15 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="#" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/75709085/Dillion_from_top_ABasin_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/SDyckes" rel="nofollow">SDyckes</a>:</strong> still running production apps on 2000. Just like @<a href="http://twitter.com/tjaybelt" rel="nofollow">tjaybelt</a>, Devs have not made the step. Running reports on 2005 perfom incres
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 34 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/SDyckes/statuses/1219737958" rel="nofollow">Tue Feb 17 18:03:05 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://facility9.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/60162854/100_1004_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/peschkaj" rel="nofollow">peschkaj</a>:</strong> Only 2005 over here, moving to 2008 in a few months.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 44 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/peschkaj/statuses/1219701908" rel="nofollow">Tue Feb 17 17:52:34 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://nelsonmichael.wordpress.com/" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/53069794/MichaelAndEstherLongBeach_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/nelsonmichael" rel="nofollow">nelsonmichael</a>:</strong> still on SQL 2000, waiting for IT to learn SQL 2005, little hope of SQL 2008 anytime soon
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 45 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/nelsonmichael/statuses/1219699838" rel="nofollow">Tue Feb 17 17:51:57 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://eternalsunshine.crisatunity.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/72203543/twitter_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/crisatunity" rel="nofollow">crisatunity</a>:</strong> *throws peanut*
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 49 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/crisatunity/statuses/1219685785" rel="nofollow">Tue Feb 17 17:47:58 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://jmkehayias.blogspot.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/65183628/073220_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/jmkehayias" rel="nofollow">jmkehayias</a>:</strong> only 2000 instances left here are because the apps won&#8217;t support upgrade to 2005/2008.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 50 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/jmkehayias/statuses/1219681970" rel="nofollow">Tue Feb 17 17:46:54 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.scalabledevelopment.com/" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/70344803/DSC_0031-small_normal.JPG" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/wbm" rel="nofollow">wbm</a>:</strong> i&#8217;ve got two customers still running sql2k. both have no pressing need to upgrade.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 53 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/wbm/statuses/1219672477" rel="nofollow">Tue Feb 17 17:44:14 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://4nkid.blogspot.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/77070409/CIMG6345_normal.JPG" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/babylon78" rel="nofollow">babylon78</a>:</strong> Still running my SIS on 2000..mostly due to not having gotten around to upgrading yet. Smaller SQL Srv. are on 2005. no 2008
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 53 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/babylon78/statuses/1219671988" rel="nofollow">Tue Feb 17 17:44:05 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.brentozar.com/what-i-do/twitter/" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/72577043/Sailing_normal.JPG" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/BrentO" rel="nofollow">BrentO</a>:</strong> we were at Southern because we had a slew of apps that we hadn&#8217;t put on support, and our versions were only 2000-compatible.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 53 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/BrentO/statuses/1219671391" rel="nofollow">Tue Feb 17 17:43:55 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://tjaybelt.blogspot.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/69753451/P1080821a_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/tjaybelt" rel="nofollow">tjaybelt</a>:</strong> its been talked about, just never seriously put on table. now, entire system going Oracle soon. so no upgrade planned
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 53 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/tjaybelt/statuses/1219671304" rel="nofollow">Tue Feb 17 17:43:54 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://tjaybelt.blogspot.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/69753451/P1080821a_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/tjaybelt" rel="nofollow">tjaybelt</a>:</strong> we have prod on 2000 still. 2005 dbs are in compatibility mode 80. dev has not proved move to 2005 or 2008 feasible yet.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 54 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/tjaybelt/statuses/1219669160" rel="nofollow">Tue Feb 17 17:43:15 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://www.GameHounds.net" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/75047706/thisisme_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/CooperHawkes" rel="nofollow">CooperHawkes</a>:</strong> Completely on SQL 2005, right now no plans to go to 2008 until the merger situation here is completed..
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 54 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/CooperHawkes/statuses/1219668244" rel="nofollow">Tue Feb 17 17:42:59 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="#" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/77145066/HPIM0623_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/RalphMRivera" rel="nofollow">RalphMRivera</a>:</strong> I&#8217;d be curious to see your results.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 54 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/RalphMRivera/statuses/1219667686" rel="nofollow">Tue Feb 17 17:42:49 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="http://codecattx.livejournal.com" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/70407731/me_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/crypticscholar" rel="nofollow">crypticscholar</a>:</strong> I know one on 2K right now that is (hopefully) going to 2K8 next week.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 55 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/crypticscholar/statuses/1219665622" rel="nofollow">Tue Feb 17 17:42:12 +0000 2009</a></div>
</p></div>
</p></div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a href="" rel="nofollow"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" src="http://s3.amazonaws.com/twitter_production/profile_images/70357919/jm_normal.jpg" /></a>
<div style="line-height: 14pt; font-size: 11pt"><strong><a href="http://twitter.com/statisticsio" rel="nofollow">statisticsio</a>:</strong> How many people are still running SQL2000? Why? When are you going to SQL2008? If not, why? No comments from the OracleMySQL pnut gallery.
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 56 minutes ago</div>
<div style="text-align: right; font-size: 8pt"><a href="http://twitter.com/statisticsio/statuses/1219660277" rel="nofollow">Tue Feb 17 17:40:40 +0000 2009</a></div>
</p></div>
</p></div>
</p></div>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ftY1a7O7WCQ:OD3d58gj67A:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ftY1a7O7WCQ:OD3d58gj67A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=ftY1a7O7WCQ:OD3d58gj67A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=ftY1a7O7WCQ:OD3d58gj67A:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/ftY1a7O7WCQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/why-people-are-still-on-sql-server-2000/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/why-people-are-still-on-sql-server-2000/</feedburner:origLink></item>
		<item>
		<title>Community Thoughts on Database Server Virtualization</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/JCOXWpYi1DY/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/community-thoughts-on-database-server-virtualization/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 01:19:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[utility computing]]></category>

		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:336</guid>
		<description><![CDATA[Trying out a new tool from Chris Pirillo called Twickie. It basically lets you blog one of your tweets and all of the replies. It missed about half of the replies but it is a nice idea and hopefully it gets better.
I posed this question to my Twitter followers on a late Saturday afternoon. I [...]]]></description>
			<content:encoded><![CDATA[<p>Trying out a new tool from <a target="_blank" href="http://twickie.pirillo.com">Chris Pirillo called Twickie</a>. It basically lets you blog one of your tweets and all of the replies. It missed about half of the replies but it is a nice idea and hopefully it gets better.</p>
<p>I posed this question to my Twitter followers on a late Saturday afternoon. I was happy with the results. Keep in mind that most of my followers are Microsoft centric DBAs, developers, admins and general geeks. I will try this again with a different question Monday when my tweeps are paying more attention. Only the geekiest of geeks are perusing Twitter(or blogging) on Valentines&#8217; Day. See below <img src='http://blog.statisticsio.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Credit to <a target="_blank" href="http://scobleizer.com">Scoble</a> for the idea.</p>
<p>I will post tips and tricks I have have learned running SQL Server on ESX tomorrow.</p>
<p>&#160;</p>
<p><a href="">     <br />
<img alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/70357919/jm_normal.jpg" /></a><strong>&#160;<a href="http://twitter.com/statisticsio">statisticsio</a>:</strong> Hey you. Yes, you. Are you virtualizing your db server? In prod? How big is it? Pitfalls? Winfalls? ROI? Performance? Pro&#8217;sCon&#8217;s?</p>
<div style="padding-bottom: 30px; padding-left: 30px; width: 400px; padding-right: 30px; clear: left; padding-top: 30px">
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a rel="nofollow" href="http://rehor.blogspot.com"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/58677709/just-me_normal.gif" /></a></p>
<div style="line-height: 14pt; font-size: 11pt"><strong><a rel="nofollow" href="http://twitter.com/rehor">rehor</a>:</strong> We virtualized our development SQL Servers last year. It works out OK, but it&#8217;s rather slow. I wouldn&#8217;t do it in prod.</p>
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about an hour ago</div>
<div style="text-align: right; font-size: 8pt"><a rel="nofollow" href="http://twitter.com/rehor/statuses/1210959521">Sat Feb 14 23:15:13 +0000 2009</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/edq"><img border="0" alt="edq" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/52145522/0215080949_normal.jpg" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/edq">edq</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> we have several prod vms all have few simultaneous users LT 40ish so far so good mirroring on two vms difrnt farms works good2                  <br />
            <a href="http://twitter.com/edq/statuses/1211003409">Sat, Feb 14 17:40:00</a> from <a href="http://orangatame.com/products/twitterberry/">TwitterBerry</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/UndertheFold"><img border="0" alt="UndertheFold" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/70985109/untitled_normal.JPG" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/UndertheFold">UndertheFold</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> just inherited 72 servers almost all VM on ESX clusters including DW and some VLBs, seems to be working ok a lot are sql 2000                <br />
            <a href="http://twitter.com/UndertheFold/statuses/1210959842">Sat, Feb 14 17:15:22</a> from <a href="http://orangatame.com/products/twitterberry/">TwitterBerry</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a rel="nofollow" href="#"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/77085630/me5_normal.jpg" /></a></p>
<div style="line-height: 14pt; font-size: 11pt"><strong><a rel="nofollow" href="http://twitter.com/nitroryder">nitroryder</a>:</strong> let&#8217;s just say the CPU performance is not optimal. Not convinced yet that ESX and SQL are a good match for this reason.</p>
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 2 hours ago</div>
<div style="text-align: right; font-size: 8pt"><a rel="nofollow" href="http://twitter.com/nitroryder/statuses/1210895575">Sat Feb 14 22:44:38 +0000 2009</a></div>
</div>
</div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a rel="nofollow" href="#"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/77085630/me5_normal.jpg" /></a></p>
<div style="line-height: 14pt; font-size: 11pt"><strong><a rel="nofollow" href="http://twitter.com/nitroryder">nitroryder</a>:</strong> hosting 3 prod MS SQL db svrs in VMware ESX 3.5, 1 is 10gb 1 is 30gb 1 is 2gb, 2 are 2000, 1 is 2005, assigned 2cpu&#8217;s each</div>
<div style="text-align: right; line-height: 14pt; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 2 hours ago</div>
<div style="text-align: right; line-height: 14pt; font-size: 8pt"><a rel="nofollow" href="http://twitter.com/nitroryder/statuses/1210884781">Sat Feb 14 22:39:19 +0000 2009</a></div>
<div style="line-height: 14pt; font-size: 11pt">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/mike_walsh"><img border="0" alt="mike_walsh" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/73132913/m2_normal.jpg" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/mike_walsh">mike_walsh</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> biggest db is smaller, 75gb. Have worked with 150gb on windows virtual server (not hyper v) i/o reaked. Frustrations.                  <br />
            <a href="http://twitter.com/mike_walsh/statuses/1210862879">Sat, Feb 14 16:29:28</a> from <a href="http://orangatame.com/products/twitterberry/">TwitterBerry</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<div style="line-height: 14pt; font-size: 11pt">&#160;</div>
<div style="line-height: 14pt; font-size: 11pt">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/mike_walsh"><img border="0" alt="mike_walsh" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/73132913/m2_normal.jpg" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/mike_walsh">mike_walsh</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> roi-rackspace/power/happier server team.. Perf-has been alright for med and dev/qa workloads. Nothing huge on vm yet.                  <br />
            <a href="http://twitter.com/mike_walsh/statuses/1210859354">Sat, Feb 14 16:27:49</a> from <a href="http://orangatame.com/products/twitterberry/">TwitterBerry</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a rel="nofollow" href="#"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/74599440/NoAvatar_Twhirl_normal.png" /></a></p>
<div style="line-height: 14pt; font-size: 11pt"><strong><a rel="nofollow" href="http://twitter.com/ciphero">ciphero</a>:</strong> NO, not the DB. It&#8217;s clustered/failovered. webservers and pure services boxes are virtualized.</p>
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 2 hours ago</div>
<div style="text-align: right; font-size: 8pt"><a rel="nofollow" href="http://twitter.com/ciphero/statuses/1210847540">Sat Feb 14 22:22:27 +0000 2009</a></div>
</div>
</div>
<div style="padding-bottom: 15px; padding-left: 0px; padding-right: 0px; clear: both; padding-top: 15px"><a rel="nofollow" href="http://www.alanbarber.org"><img style="padding-bottom: 45px; border-right-width: 0px; padding-left: 0px; width: 48px; padding-right: 15px; float: left; border-top-width: 0px; border-bottom-width: 0px; height: 48px; border-left-width: 0px; padding-top: 4px" alt="" src="http://s3.amazonaws.com/twitter_production/profile_images/68901130/twitter_normal.png" /></a></p>
<div style="line-height: 14pt; font-size: 11pt"><strong><a rel="nofollow" href="http://twitter.com/AlanBarber">AlanBarber</a>:</strong> Planing to move dev and testing/qa to virtual in next 6-9 mo.</p>
<div style="text-align: right; font-style: italic; color: silver; font-size: 8pt; padding-top: 10px">about 2 hours ago</div>
<div style="text-align: right; font-size: 8pt"><a rel="nofollow" href="http://twitter.com/AlanBarber/statuses/1210828085">Sat Feb 14 22:13:16 +0000 2009</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/Jorriss"><img border="0" alt="Jorriss" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/66373074/XBoxAvatar_normal.png" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/Jorriss">Jorriss</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> Virtual in Dev, Test, and Stage. Prod? No way. Never, never, never.                  <br />
            <a href="http://twitter.com/Jorriss/statuses/1210860716">Sat, Feb 14 16:28:27</a> from <a href="http://www.twhirl.org/">twhirl</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<div style="line-height: 14pt; font-size: 11pt">&#160;</div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/mrdenny"><img border="0" alt="mrdenny" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/66491212/dcherry_normal.jpg" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/mrdenny">mrdenny</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> planning to VM smaller prod database. All dev and qa are vm. No issues yet.                <br />
            <a href="http://twitter.com/mrdenny/statuses/1210836094">Sat, Feb 14 16:17:05</a> from <a href="http://www.tinytwitter.com/">TinyTwitter</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p><a href="http://twitter.com/jlshultz"><img border="0" alt="jlshultz" width="48" height="48" src="http://s3.amazonaws.com/twitter_production/profile_images/53651737/james_normal.jpg" /></a></p>
</td>
<td>
<p><strong><a href="http://twitter.com/jlshultz">jlshultz</a></strong> @<a href="http://twitter.com/statisticsio">statisticsio</a> yes we r. Not big # users, but Oracle DB &amp; Oracle Apps. Been vm ~3yrs, its been great. Time sync been only issue.              <br />
            <a href="http://twitter.com/jlshultz/statuses/1210833822">Sat, Feb 14 16:16:01</a> from <a href="http://orangatame.com/products/twitterberry/">TwitterBerry</a></p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<p>update:</p>
<p><span class="Apple-style-span" style="color: rgb(15, 6, 6); font-family: 'Lucida Grande'; font-size: 12px; "></p>
<ol class="statuses" id="timeline" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-type: none; list-style-position: initial; list-style-image: initial; font-size: 1.2em; ">
<li class="hentry status reply u-crisatunity to_me" id="status_1211503535" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; border-top-width: 1px; border-top-style: dashed; border-top-color: rgb(210, 218, 218); "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/crisatunity" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="Michael O'Neill" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/72203543/twitter_normal.jpg" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/crisatunity" title="Michael O'Neill" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">crisatunity</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;the problem I see with db on vm is that all of the db products are geared in very specific architecture not to be on vm.</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/crisatunity/status/1211503535" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T04:04:14+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 2 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from web</span>&#160;<a href="http://twitter.com/statisticsio/status/1210820731" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">in reply to statisticsio</a></span></span><span class="actions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: absolute; right: 5px; top: 0.5em; line-height: 1.25em; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; ">
<div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">&#160;</div>
<p>    </span></li>
<li class="hentry status reply u-jmkehayias to_me" id="status_1211390080" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/jmkehayias" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="jmkehayias" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/65183628/073220_normal.jpg" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/jmkehayias" title="jmkehayias" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">jmkehayias</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;almost all of our production servers are VM based for DR scenarios. I have physical servers for dev. How backwards is that</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/jmkehayias/status/1211390080" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T03:04:01+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 3 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from&#160;<a href="http://www.twittergadget.com/" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">TwitterGadget</a></span>&#160;<a href="http://twitter.com/statisticsio/status/1211188173" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">in reply to statisticsio</a></span></span><span class="actions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: absolute; right: 5px; top: 0.5em; line-height: 1.25em; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; ">
<div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">&#160;</div>
<p>    </span></li>
<li class="hentry status reply u-Efelito to_me" id="status_1211298535" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/Efelito" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="Jeff Banschbach" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/73007060/autobotlogo_normal.jpg" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/Efelito" title="Jeff Banschbach" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">Efelito</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;and as @<a href="http://twitter.com/mrdenny" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">mrdenny</a>&#160;said, all dev, qa, and uat are very happy in VMs.</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/Efelito/status/1211298535" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T02:14:09+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 3 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from web</span></span></span><span class="actions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: absolute; right: 5px; top: 0.5em; line-height: 1.25em; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; ">
<div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">&#160;</div>
<p>    </span></li>
<li class="hentry status reply u-Efelito to_me" id="status_1211295759" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/Efelito" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="Jeff Banschbach" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/73007060/autobotlogo_normal.jpg" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/Efelito" title="Jeff Banschbach" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">Efelito</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;works well for us on instances with low memory requirements SCOM, VCenter, SharePoint, and SSRS Have more detail if you want</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/Efelito/status/1211295759" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T02:12:47+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 3 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from web</span></span></span><span class="actions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: absolute; right: 5px; top: 0.5em; line-height: 1.25em; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; ">
<div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">&#160;</div>
<p>    </span></li>
<li class="hentry status reply u-SQLDBA to_me" id="status_1211258504" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/SQLDBA" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="Kendal Van Dyke" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/70832381/avatarpic-l_1__normal.png" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/SQLDBA" title="Kendal Van Dyke" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">SQLDBA</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;virtualizing, yes&#8230;but not in prod, only in dev &amp; stage. Very easy to spin up new servers for developers.</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/SQLDBA/status/1211258504" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T01:53:59+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 4 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from&#160;<a href="http://iconfactory.com/software/twitterrific" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">twitterrific</a></span>&#160;<a href="http://twitter.com/statisticsio/status/1210820731" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">in reply to statisticsio</a></span></span><span class="actions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: absolute; right: 5px; top: 0.5em; line-height: 1.25em; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; ">
<div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">&#160;</div>
<p>    </span></li>
<li class="hentry status reply u-idolan to_me" id="status_1211204761" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; position: relative; padding-top: 0.7em; padding-right: 0px; padding-bottom: 0.6em; padding-left: 0px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: rgb(210, 218, 218); line-height: 1.1em; "><span class="thumb vcard author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; display: block; width: 50px; height: 50px; position: absolute; left: 0px; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 5px; "><a href="http://twitter.com/idolan" class="url" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); "><img alt="Richard Dolan" class="photo fn" src="http://s3.amazonaws.com/twitter_production/profile_images/53880403/IMG_0061_normal.png" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; width: 48px; height: 48px; " /></a></span><span class="status-body" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; min-height: 50px; width: 420px; overflow-x: hidden; overflow-y: hidden; margin-left: 65px; "><strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "><a href="http://twitter.com/idolan" title="Richard Dolan" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">idolan</a></strong>&#160;<span class="entry-content" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">@<a href="http://twitter.com/statisticsio" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 255); ">statisticsio</a>&#160;Ours has been virtual about 10 mos. Suspicious there may be a performance hit but maintenance advantages are a big win.</span><span class="meta entry-meta" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; font-size: 0.8em; font-family: georgia; font-style: italic; margin-top: 3px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(153, 153, 153); "><a href="http://twitter.com/idolan/status/1211204761" class="entry-date" rel="bookmark" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); "><span class="published" title="2009-02-15T01:27:09+00:00" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">about 4 hours ago</span></a>&#160;<span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">from web</span>&#160;<a href="http://twitter.com/statisticsio/status/1210820731" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(153, 153, 153); ">in reply to statisticsio</a></span></span></li>
</ol>
<p></span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JCOXWpYi1DY:EJckbdV_qmU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JCOXWpYi1DY:EJckbdV_qmU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=JCOXWpYi1DY:EJckbdV_qmU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=JCOXWpYi1DY:EJckbdV_qmU:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/JCOXWpYi1DY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/community-thoughts-on-database-server-virtualization/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/community-thoughts-on-database-server-virtualization/</feedburner:origLink></item>
		<item>
		<title>The Doomed DBA(or The Sky is Falling)</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/4xO6UcrlWIA/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/the-doomed-dbaor-the-sky-is-falling/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 02:48:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[editorial]]></category>

		<category><![CDATA[fud]]></category>

		<category><![CDATA[SDS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:335</guid>
		<description><![CDATA[Tony Bain(RSS, Twitter) has written a very nice article comparing relational databases to “cloud” databases. Not only is it well written, it has a HUGE audience at ReadWriteWeb. Props Tony. Suggested reading for Database Professionals.
The full article can be found here. Here is one thing you should see this even if you do not follow [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.tonybain.com/" target="_blank">Tony Bain</a>(<a href="http://feeds.feedburner.com/TonyBain" target="_blank">RSS</a>, <a href="http://twitter.com/tonybain" target="_blank">Twitter</a>) has written a very nice article comparing relational databases to “cloud” databases. Not only is it well written, it has a HUGE audience at <a href="http://ReadWriteWeb.com" target="_blank">ReadWriteWeb</a>. Props Tony. Suggested reading for Database Professionals.</p>
<p>The full article can be found <a href="http://www.readwriteweb.com/archives/is_the_relational_database_doomed.php" target="_blank">here</a>. Here is one thing you should see this even if you do not follow the link.</p>
<p><a href="http://www.readwriteweb.com/archives/is_the_relational_database_doomed.php" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="relational_database_feb09c[1]" border="0" alt="relational_database_feb09c[1]" src="/Portals/0/images/News-Articles/WLW/TheDoomedDBAorTheSkyisFalling_1234A/relational_database_feb09c%5B1%5D_3.png" width="614" height="350" /></a></p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4xO6UcrlWIA:NimBjkobV78:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4xO6UcrlWIA:NimBjkobV78:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=4xO6UcrlWIA:NimBjkobV78:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=4xO6UcrlWIA:NimBjkobV78:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/4xO6UcrlWIA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/the-doomed-dbaor-the-sky-is-falling/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/the-doomed-dbaor-the-sky-is-falling/</feedburner:origLink></item>
		<item>
		<title>Things you Know Now…</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/gHb8YACY0HI/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/things-you-know-nowhellip/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 14:45:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[meme]]></category>

		<category><![CDATA[professional development]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:334</guid>
		<description><![CDATA[There is a new meme started by Mike Walsh (Twitter, blog). He tagged Brent Ozar(RSS, Twitter) who tagged me amongst other.
Here is the the basis of the meme to quote Mike.
When I wrote about empirical evidence and learning through trying (instead of asking only), I got thinking about things I wish I knew when I [...]]]></description>
			<content:encoded><![CDATA[<p>There is a new meme started by Mike Walsh (<a href="http://twitter.com/mike_walsh">Twitter</a>, <a href="http://www.straightpathsql.com/">blog</a>). He tagged <a href="http://www.brentozar.com/" target="_blank">Brent Ozar</a>(<a href="http://feeds2.feedburner.com/BrentOzar-SqlServerDba" target="_blank">RSS</a>, <a href="http://twitter.com/brento" target="_blank">Twitter</a>) who tagged me amongst other.</p>
<p>Here is the the basis of the meme to quote Mike.</p>
<blockquote><p>When I wrote about <a href="http://www.straightpathsql.com/blog/2009/1/18/empirical-evidence.html">empirical evidence</a> and learning through trying (instead of asking only), I got thinking about things I wish I knew when I was a Junior DBA that I know now.</p>
</blockquote>
<p>So here is what I know now that I wish I knew then(and usually learned the hard way).</p>
<p><strong>Microsoft Project is your friend.</strong> </p>
<p>I have written about this before but it is worth it to revisit. I started out making big production changes to mission critical systems with nothing but a task list in my head. I evolved to notepad and then excel. My success % improved with each jump. Now, I can floor my boss and customers with downtime estimates accurate the minute. On top of that, I can establish doable timelines and get more resources if my time line does meet expectations.</p>
<p><strong>You can be your worst enemy.</strong></p>
<p>Ego can make a brilliant employee a liability. It manifests is several ways( at least for me).</p>
<ul>
<li>Jump on the new groups sporting all your brand new certs in your sig trying to “help”. However based on attitude, it is clear you are there for the wrong reasons usually attention.</li>
<li>Bogarting knowledge. So you know something someone else does not, teach them instead of holding it over them. Help out he jr guy. He may be your boss someday.</li>
<li>Ego can keep you from asking for help when you are clearly in over your head. I still struggle with this one.</li>
</ul>
<p>Life is so much better when you are modest rather than smug.</p>
<p><strong>If the hole is round, a square peg may not be the best fit.</strong></p>
<p>I have officially become platform agnostic. SQL Server will always be my first love and what I am best at but there are other products out there. Not that I know everything there is about SQL but I don’t learn 10 new things about it everyday like I used to. As a n00b, I learn 30 new things a day about MySQLOracle. There are valid reasons to go MySQL or Oracle over SQL Server. That is just the way it is. Imagine rewriting the DAL layer for Wiki or Wordpress just because you had to run it on SQL Server. If you drink that much koolaid, more power to you. I think knowing the features and limitations of other platforms helps me as a SQL Server DBA as well.</p>
<p><strong>The GUI is not your friend.</strong></p>
<p>I used to be an enterprise manager DBA. When I learned how to admin from TSQL, that is were the Senior DBA level skills came in. I still use the GUI if it a click or two vs. several lines of code but I know how to write it and, if need be, automate it. If you can’t, learn.</p>
<p><strong>Know X as good or better than the subject matter experts</strong></p>
<p>Where X is technology that interacts with the database: The OS, hardware, SAN, network, and application code. Of course, this is not always feasible. I have never jumped on a switch to prove it is not a SQL Server problem but I have gotten pretty close. Once when all fingers pointed at SQL Server, I had them check the switch for errors and sure enough the firewall was set 100/half duplex. If nothing else, learn the hardware and OS inside and out.</p>
<p><strong>Next Victims</strong></p>
<p><a href="http://sqlblog.com/blogs/jonathan_kehayias/default.aspx">Jonathan Kehayias</a>(<a href="http://sqlblog.com/blogs/jonathan_kehayias/rss.aspx" target="_blank">RSS</a>, <a href="http://www.twitter.com/jmkehayias" target="_blank">Twitter</a>)</p>
<p><a href="http://stratesql.com/" target="_blank">Jason Strate</a>(<a href="http://stratesql.com/rss2.aspx" target="_blank">RSS</a>, <a href="http://twitter.com/h4ppyd4y" target="_blank">Twitter</a>)</p>
<p><a href="http://robboek.com/" target="_blank">Rob Boek</a>(<a href="http://feeds2.feedburner.com/RobBoek" target="_blank">RSS</a>, <a href="http://twitter.com/robboek" target="_blank">Twitter</a>)</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gHb8YACY0HI:239Tf3_z0t4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gHb8YACY0HI:239Tf3_z0t4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=gHb8YACY0HI:239Tf3_z0t4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=gHb8YACY0HI:239Tf3_z0t4:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/gHb8YACY0HI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/things-you-know-nowhellip/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/things-you-know-nowhellip/</feedburner:origLink></item>
		<item>
		<title>Key Lookup Threshold Part 2</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/7Hw6Xd7HK-w/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold-part-2/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 13:57:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[indexes]]></category>

		<category><![CDATA[query optimizer]]></category>

		<category><![CDATA[query tuning]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:333</guid>
		<description><![CDATA[Grant Fritchey(@gfritchey) posed this question to me on twitter after my posted on the key lookup threshold post.
@statisticsio Interesting post. Do you think that threshold is dependent on the data involved? Or maybe on the size of the key?8:28 AM Feb 5th from TwitterGadget in reply to statisticsio

I kind of assumed so which is why [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://scarydba.wordpress.com/" target="_blank">Grant Fritchey</a>(<a href="http://twitter.com/gfritchey" target="_blank">@gfritchey</a>) posed this question to me on twitter after my posted on the <a href="/Home/tabid/36/articleType/ArticleView/articleId/331/Key-Lookup-Threshold.aspx" target="_blank">key lookup threshold post</a>.</p>
<blockquote><p>@<a href="http://twitter.com/statisticsio">statisticsio</a> Interesting post. Do you think that threshold is dependent on the data involved? Or maybe on the size of the key?<a href="http://twitter.com/GFritchey/status/1179781816">8:28 AM Feb 5th</a> from <a href="http://www.twittergadget.com">TwitterGadget</a> <a href="http://twitter.com/statisticsio/status/1179707303">in reply to statisticsio</a></p>
</blockquote>
<p>I kind of assumed so which is why I did char(1000). However, I have just tested with char(1). The numbers are interesting. Please refer to <a href="/Home/tabid/36/articleType/ArticleView/articleId/331/Key-Lookup-Threshold.aspx" target="_blank">the original post for repro code</a>.</p>
<p>&#160;</p>
<table border="1" cellspacing="0" cellpadding="0" width="250">
<tbody>
<tr>
<td width="76">&#160;</td>
<td width="73"><strong>IO</strong></td>
<td width="99"><strong>IO</strong></td>
</tr>
<tr>
<td width="76"><strong>Rows</strong></td>
<td width="73"><strong>CHAR(1000)</strong></td>
<td width="99"><strong>CHAR(1)</strong></td>
</tr>
<tr>
<td width="76">Scan</td>
<td width="73">422</td>
<td width="99">9</td>
</tr>
<tr>
<td width="76">1 row</td>
<td width="73">4</td>
<td width="99">4</td>
</tr>
<tr>
<td width="76">5 rows</td>
<td width="73">12</td>
<td width="99">12</td>
</tr>
<tr>
<td width="76">10 rows</td>
<td width="73">22</td>
<td width="99">22</td>
</tr>
<tr>
<td width="76">25 rows</td>
<td width="73">52</td>
<td width="99">52</td>
</tr>
<tr>
<td width="76">50 rows</td>
<td width="73">114</td>
<td width="99">102</td>
</tr>
<tr>
<td width="76">100 rows</td>
<td width="73">217</td>
<td width="99">202</td>
</tr>
<tr>
<td width="76">250 Rows</td>
<td width="73">526</td>
<td width="99">502</td>
</tr>
<tr>
<td width="76">500 Rows</td>
<td width="73">1043</td>
<td width="99">1003</td>
</tr>
<tr>
<td width="76">1000 Rows</td>
<td width="84">4141</td>
<td width="125">4007</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>The threshold is crossed much earlier because the scan is smaller. This is a small table especially with CHAR(1) so take this test with a grain of salt. Run your own tests when you are working with large production data.</p>
<p>I would also venture to guess that as the complexity of the query increases the threshold gets lower especially on more complex queries like when grouping especially when grouping and outer joining. </p>
<p>A covering index is probably the best solution in most cases unless you need to touch all rows even then, it might be better,.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7Hw6Xd7HK-w:ap8y9-5HJ40:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7Hw6Xd7HK-w:ap8y9-5HJ40:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=7Hw6Xd7HK-w:ap8y9-5HJ40:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=7Hw6Xd7HK-w:ap8y9-5HJ40:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/7Hw6Xd7HK-w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold-part-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold-part-2/</feedburner:origLink></item>
		<item>
		<title>Key Lookup Threshold</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/nyv92qszTQk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:05:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[indexes]]></category>

		<category><![CDATA[query optimizer]]></category>

		<category><![CDATA[query tuning]]></category>

		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:331</guid>
		<description><![CDATA[Gail talks about bookmark lookups…. err.. key lookups in this post. So are they good or bad? Well, like many things in SQL, it depends. The main factor is the number of rows returned. A few rows are fine but the cost rises sharply with larger result sets. There comes a point where the threshold [...]]]></description>
			<content:encoded><![CDATA[<p>Gail talks about bookmark lookups…. err.. key lookups in <a href="http://sqlinthewild.co.za/index.php/2009/01/27/a-bookmark-lookup-by-any-other-name/" target="_blank">this post</a>. So are they good or bad? Well, like many things in SQL, it depends. The main factor is the number of rows returned. A few rows are fine but the cost rises sharply with larger result sets. There comes a point where the threshold is crossed and a scan is more efficient. This is because a scan leverages sequential IO while a lookup does random IO.</p>
<p>Here are the results of the code at the end of the post.</p>
<table border="1" cellspacing="0" cellpadding="0" width="250">
<tbody>
<tr>
<td width="76"><strong>Rows</strong></td>
<td width="73"><strong>IO</strong></td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">Scan</td>
<td width="73">422</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">1 row</td>
<td width="73">4</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">5 rows</td>
<td width="73">12</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">10 rows</td>
<td width="73">22</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">25 rows</td>
<td width="73">52</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">50 rows</td>
<td width="73">114</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">100 rows</td>
<td width="73">217</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">250 Rows</td>
<td width="73">526</td>
<td width="99">&lt;&#8211;Threshold</td>
</tr>
<tr>
<td width="76">500 Rows</td>
<td width="73">1043</td>
<td width="99">&#160;</td>
</tr>
<tr>
<td width="76">1000 Rows</td>
<td width="84">4141</td>
<td width="125">&#160;</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>As you can see, at 250 rows, we have crossed the threshold and it is cheaper do a scan. If you are passing in a literal, the optimizer can detect this and switch to a scan. If it is a stored proc or parameterized SQL, a plan is cached the first time it is run. Problems happen when the result size greatly varies depending on the parameter. There are ways around this all with their pro’s and con’s. Here are some:</p>
<ul>
<li>A covering index. </li>
<li>A statement level recompile hint </li>
<li>Plan guides and hints </li>
</ul>
<p>Here is the sample code that can repro these numbers on SQL Server 2008.</p>
<p> <code style="font-size: 12px"><span style="color: blue">CREATE TABLE </span><span style="color: #434343">#temp      <br /></span><span style="color: gray">(      <br /></span><span style="color: black">id </span><span style="color: blue">INT </span><span style="color: #434343">IDENTITY</span><span style="color: gray">(</span><span style="color: black">1</span><span style="color: gray">,</span><span style="color: black">1</span><span style="color: gray">) </span><span style="color: blue">PRIMARY KEY CLUSTERED</span><span style="color: gray">,      <br /></span><span style="color: black">c1 </span><span style="color: blue">CHAR</span><span style="color: gray">(</span><span style="color: black">1000</span><span style="color: gray">) </span><span style="color: blue">DEFAULT</span><span style="color: gray">( </span><span style="color: red">&#8216;blah&#8217;</span><span style="color: gray">),      <br /></span><span style="color: black">c2 </span><span style="color: blue">INT      <br /></span><span style="color: gray">)      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">1</span><span style="color: gray">)      <br /></span><span style="color: black">GO&#160; <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">5</span><span style="color: gray">)      <br /></span><span style="color: black">GO 5      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">10</span><span style="color: gray">)      <br /></span><span style="color: black">GO 10      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">25</span><span style="color: gray">)      <br /></span><span style="color: black">GO 25      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">50</span><span style="color: gray">)      <br /></span><span style="color: black">GO 50      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">100</span><span style="color: gray">)      <br /></span><span style="color: black">GO 100      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">250</span><span style="color: gray">)      <br /></span><span style="color: black">GO 250      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">500</span><span style="color: gray">)      <br /></span><span style="color: black">GO 500      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">1000</span><span style="color: gray">)      <br /></span><span style="color: black">GO 1000      <br /></span><span style="color: blue">INSERT INTO </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      <br /></span><span style="color: blue">VALUES      <br /></span><span style="color: gray">(</span><span style="color: black">1000</span><span style="color: gray">)      <br /></span><span style="color: black">GO 1000      </p>
<p></span><span style="color: blue">CREATE INDEX </span><span style="color: black">ix </span><span style="color: blue">ON </span><span style="color: #434343">#temp</span><span style="color: gray">(</span><span style="color: black">c2</span><span style="color: gray">)      </p>
<p></span><span style="color: green">&#8211;The baseline      <br /></span><span style="color: blue">SET STATISTICS </span><span style="color: black">io </span><span style="color: blue">ON      <br />SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp </span><span style="color: blue">WITH </span><span style="color: gray">(</span><span style="color: blue">INDEX=</span><span style="color: black">1</span><span style="color: gray">)      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">1      </p>
<p></span><span style="color: green">&#8211;1 row returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">1      </p>
<p></span><span style="color: green">&#8211;5 rows returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">5      </p>
<p></span><span style="color: green">&#8211;10 rows returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">10      </p>
<p></span><span style="color: green">&#8211;25 rows returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">25      </p>
<p></span><span style="color: green">&#8211;50 rows returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">50      </p>
<p></span><span style="color: green">&#8211;100 rows returned      <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">100      </p>
<p></span><span style="color: green">&#8211;250 rows returned      <br />&#8211;Must begin using hints because the optimizer can tell that a scan is better       <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp </span><span style="color: blue">WITH </span><span style="color: gray">(</span><span style="color: blue">INDEX=</span><span style="color: black">ix</span><span style="color: gray">, </span><span style="color: black">forceseek</span><span style="color: gray">)      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">250      </p>
<p></span><span style="color: green">&#8211;1000 rows returned      <br />&#8211;Must begin using hints because the optimizer can tell that a scan is better       <br /></span><span style="color: blue">SELECT </span><span style="color: gray">*      <br /></span><span style="color: blue">FROM </span><span style="color: #434343">#temp </span><span style="color: blue">WITH </span><span style="color: gray">(</span><span style="color: blue">INDEX=</span><span style="color: black">ix</span><span style="color: gray">, </span><span style="color: black">forceseek</span><span style="color: gray">)      <br /></span><span style="color: blue">WHERE </span><span style="color: black">c2 </span><span style="color: blue">= </span><span style="color: black">1000</span></code>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=nyv92qszTQk:nUainfxrR9A:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=nyv92qszTQk:nUainfxrR9A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=nyv92qszTQk:nUainfxrR9A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=nyv92qszTQk:nUainfxrR9A:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/nyv92qszTQk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/key-lookup-threshold/</feedburner:origLink></item>
		<item>
		<title>MySQL Cheatsheet for SQL DBAs</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/1pe93qaLQz0/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/mysql-cheatsheet-for-sql-dbas/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 15:09:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[RDBMS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:330</guid>
		<description><![CDATA[SHOW VARIABLES – This is like sp_configure or sys.configurations
SHOW STATUS – This like sys.dm_os_%. Basically, all runtime counters for the database engine components.
SHOW PROCESSLIST – This is like sp_who2
SHOW TABLE STATUS – This is like sp_help
These can be filtered like this: SHOW VARIABLES LIKE ‘%innodb%’
Those are the big ones. The full list can be found [...]]]></description>
			<content:encoded><![CDATA[<p>SHOW VARIABLES – This is like sp_configure or sys.configurations</p>
<p>SHOW STATUS – This like sys.dm_os_%. Basically, all runtime counters for the database engine components.</p>
<p>SHOW PROCESSLIST – This is like sp_who2</p>
<p>SHOW TABLE STATUS – This is like sp_help</p>
<p>These can be filtered like this: SHOW VARIABLES LIKE ‘%innodb%’</p>
<p>Those are the big ones. The full list can be found <a href="http://dev.mysql.com/doc/refman/5.0/en/show.html">here</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=1pe93qaLQz0:91mHrBXNrDg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=1pe93qaLQz0:91mHrBXNrDg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=1pe93qaLQz0:91mHrBXNrDg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=1pe93qaLQz0:91mHrBXNrDg:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/1pe93qaLQz0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/mysql-cheatsheet-for-sql-dbas/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/mysql-cheatsheet-for-sql-dbas/</feedburner:origLink></item>
		<item>
		<title>The Death of JOIN</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/qQ84OL4B0Og/</link>
		<comments>http://blog.statisticsio.com/archive/2009/02/the-death-of-join/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 05:49:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[fud]]></category>

		<category><![CDATA[SDS]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:329</guid>
		<description><![CDATA[The core of a relational database is normalization. The reduction of data duplication is what it is all about. Less data means less IO. SDS removes database design from the equation. This is why sparse columns and filtered indexes where implemented in SQL Server 2008. Here are a few posts on how this is handled [...]]]></description>
			<content:encoded><![CDATA[<p>The core of a relational database is normalization. The reduction of data duplication is what it is all about. Less data means less IO. SDS removes database design from the equation. This is why sparse columns and filtered indexes where implemented in SQL Server 2008. Here are a few posts on how this is handled in <a href="http://msdn.microsoft.com/en-us/sqlserver/dataservices/default.aspx" target="_blank">SDS</a>.</p>
<p><a href="http://www.reluctantdba.com/DBAsAndProgrammers/Blog/tabid/411/EntryId/96/The-End-of-JOINs.aspx" target="_blank">The End of of JOINs?</a></p>
<p><a href="http://www.reluctantdba.com/DBAsAndProgrammers/Blog/tabid/411/EntryId/122/The-End-of-JOINs-Part-2.aspx" target="_blank">The End of JOINs Part 2</a>?</p>
<p>Yah yah, it doesn’t apply to your job, business, sector. <a href="http://sqlblog.com/blogs/adam_machanic/default.aspx" target="_blank">Adam</a> may call me out on <a href="/Home/tabid/36/articleType/ArticleView/articleId/311/categoryId/45/Capt-VarcharMAX-and-the-Pagelatch-Posse-Vol-16.aspx" target="_blank">FUD again</a>. I hope it is true since this is hopeware so far.</p>
<p>However, I want to point out one company who have found a cloud non-relational database to meet their business requirements. They state their limitations and it makes sense as to why they took this route. If you are not up to speed, Simpledb is Amazon’s cloud db. Big table is Google’s cloud db. You are here because you already know about MSFT.</p>
<p><a href="http://blog.adaptiveblue.com/?p=1145" target="_blank">Glue chooses&#160; SimpleDB.</a></p>
<p>This is what we need to keep an eye on.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qQ84OL4B0Og:RIk9TNGwcEA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qQ84OL4B0Og:RIk9TNGwcEA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=qQ84OL4B0Og:RIk9TNGwcEA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=qQ84OL4B0Og:RIk9TNGwcEA:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/qQ84OL4B0Og" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/02/the-death-of-join/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/02/the-death-of-join/</feedburner:origLink></item>
		<item>
		<title>Capt. Varchar(MAX) and the Pagelatch Posse Vol. 18</title>
		<link>http://feedproxy.google.com/~r/statisticsio/~3/PXM-QZ3TAQk/</link>
		<comments>http://blog.statisticsio.com/archive/2009/01/capt-varcharmax-and-the-pagelatch-posse-vol-18/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 17:44:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Capt. Varchar]]></category>

		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:328</guid>
		<description><![CDATA[
The Senior DBA
 
I am astounded by how often I see a problem that I know nothing about but fix it after finding the answer in a search. I get more high fives for being a good search engine user than a good DBA. On the flipside, I learned this by asking dumb questions and [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="/DesktopModules/itcMetaPost/js/ca0c21fbdc85f6a1597417732d450607.ashx?hs=1"></script>
<p><strong>The Senior DBA</strong></p>
<p><strong><a href="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.18_A3DB/TheSRDBA_2.jpg"  class="itcexpando" onclick="return mp.expand(this,{slideshowGroup:'1cf1d969'})" ><img title="TheSRDBA" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="414" alt="TheSRDBA" title="TheSRDBA" src="/Portals/0/images/News-Articles/WLW/Capt.VarcharMAXandthePagelatchPosseVo.18_A3DB/TheSRDBA_thumb.jpg" width="405" border="0" /></a> </strong></p>
<p>I am astounded by how often I see a problem that I know nothing about but fix it after finding the answer in a search. I get more high fives for being a good search engine user than a good DBA. On the flipside, I learned this by asking dumb questions and getting sent back a google search link.</p>
<p>The comic was adapted from <a href="https://blogs.msdn.com/officeoffline/" target="_blank">OfficeOffline</a>.</p>
<div class="d_itc_f" style="clear:both;height:11px;"><script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=PXM-QZ3TAQk:9EIT-tJxEGY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=PXM-QZ3TAQk:9EIT-tJxEGY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?i=PXM-QZ3TAQk:9EIT-tJxEGY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=cGdyc7Q-1BI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:G79ilh31hkQ"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=G79ilh31hkQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/statisticsio?a=PXM-QZ3TAQk:9EIT-tJxEGY:qZ7jBH1wJJ8"><img src="http://feeds.feedburner.com/~ff/statisticsio?d=qZ7jBH1wJJ8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/statisticsio/~4/PXM-QZ3TAQk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.statisticsio.com/archive/2009/01/capt-varcharmax-and-the-pagelatch-posse-vol-18/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.statisticsio.com/archive/2009/01/capt-varcharmax-and-the-pagelatch-posse-vol-18/</feedburner:origLink></item>
	</channel>
</rss>
