<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Introduction to Wait Stats and Wait Types &#8211; Wait Type &#8211; Day 1 of 28</title>
	<atom:link href="http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Tue, 18 Jun 2013 01:32:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #015 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-419688</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #015 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 09 Feb 2013 01:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-419688</guid>
		<description><![CDATA[[...] Introduction to Wait Stats and Wait Types – Wait Type – Day 1 of 28 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to Wait Stats and Wait Types – Wait Type – Day 1 of 28 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-407159</link>
		<dc:creator><![CDATA[Eric]]></dc:creator>
		<pubDate>Sun, 13 Jan 2013 08:55:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-407159</guid>
		<description><![CDATA[I have two rows of data executing your query:

DIRTY_PAGE_POLL   429790   46,49.96   49.96
HADR_FILESTREAM_IOMGR_IOCOMPLETION   429754.36   49.95   99.91

Would you please let me know what do they mean. Thanks.]]></description>
		<content:encoded><![CDATA[<p>I have two rows of data executing your query:</p>
<p>DIRTY_PAGE_POLL   429790   46,49.96   49.96<br />
HADR_FILESTREAM_IOMGR_IOCOMPLETION   429754.36   49.95   99.91</p>
<p>Would you please let me know what do they mean. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carla abanes (@carlingdoodling)</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-353479</link>
		<dc:creator><![CDATA[carla abanes (@carlingdoodling)]]></dc:creator>
		<pubDate>Thu, 27 Sep 2012 06:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-353479</guid>
		<description><![CDATA[this is what i got
ONDEMAND_TASK_QUEUE	54205.45	99.75	99.75]]></description>
		<content:encoded><![CDATA[<p>this is what i got<br />
ONDEMAND_TASK_QUEUE	54205.45	99.75	99.75</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taruna</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-350364</link>
		<dc:creator><![CDATA[Taruna]]></dc:creator>
		<pubDate>Tue, 18 Sep 2012 09:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-350364</guid>
		<description><![CDATA[W1 and W2 are the alias names for Waits and we are joining Waits table with the Waits table again by giving two alias names  viz W1 and W2 it on the column rn.
Hence W2.rn&lt;=W1.rn is given to avoid the same matching values coming again and again.]]></description>
		<content:encoded><![CDATA[<p>W1 and W2 are the alias names for Waits and we are joining Waits table with the Waits table again by giving two alias names  viz W1 and W2 it on the column rn.<br />
Hence W2.rn&lt;=W1.rn is given to avoid the same matching values coming again and again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roman</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-335602</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Wed, 22 Aug 2012 14:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-335602</guid>
		<description><![CDATA[what is the meaning of joining CTE waits to itself on:
                W2.rn &lt;= W1.rn

I just can&#039;t figure it out. 
Thank you in advance.
Roman.]]></description>
		<content:encoded><![CDATA[<p>what is the meaning of joining CTE waits to itself on:<br />
                W2.rn &lt;= W1.rn</p>
<p>I just can&#039;t figure it out.<br />
Thank you in advance.<br />
Roman.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; TRACEWRITE &#8211; Wait Type &#8211; Wait Related to Buffer and Resolution &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-180990</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; TRACEWRITE &#8211; Wait Type &#8211; Wait Related to Buffer and Resolution &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 01:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-180990</guid>
		<description><![CDATA[[...] type and I recommend that you ignore it too. However, the DBA who ran the script mentioned in my very first blog still found this wait type on the top as I did not include this wait type in the exclusion list.  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] type and I recommend that you ignore it too. However, the DBA who ran the script mentioned in my very first blog still found this wait type on the top as I did not include this wait type in the exclusion list.  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Sansom</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-117053</link>
		<dc:creator><![CDATA[John Sansom]]></dc:creator>
		<pubDate>Mon, 07 Feb 2011 14:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-117053</guid>
		<description><![CDATA[Brilliant topic and looking forward to reading more!

I have often found the documentation for the Wait Types that I have referenced to be vague and well to be honest just not that helpful. I&#039;m hoping that this series will add some meat to the bones.]]></description>
		<content:encoded><![CDATA[<p>Brilliant topic and looking forward to reading more!</p>
<p>I have often found the documentation for the Wait Types that I have referenced to be vague and well to be honest just not that helpful. I&#8217;m hoping that this series will add some meat to the bones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn Berry</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-115596</link>
		<dc:creator><![CDATA[Glenn Berry]]></dc:creator>
		<pubDate>Wed, 02 Feb 2011 00:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-115596</guid>
		<description><![CDATA[I too will be interested to see your 28 blog posts about this subject. It will be a lot of work, but it will be good for you !]]></description>
		<content:encoded><![CDATA[<p>I too will be interested to see your 28 blog posts about this subject. It will be a lot of work, but it will be good for you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nish</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-115541</link>
		<dc:creator><![CDATA[nish]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 14:01:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-115541</guid>
		<description><![CDATA[1 of 28.. Fantastic to see 28 posts on this topic....

Thanks a lot]]></description>
		<content:encoded><![CDATA[<p>1 of 28.. Fantastic to see 28 posts on this topic&#8230;.</p>
<p>Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Randal</title>
		<link>http://blog.sqlauthority.com/2011/02/01/sql-server-introduction-to-wait-stats-and-wait-types-wait-type-day-1-of-28/#comment-115453</link>
		<dc:creator><![CDATA[Paul Randal]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 02:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11445#comment-115453</guid>
		<description><![CDATA[Looking forward to seeing what you come up with.]]></description>
		<content:encoded><![CDATA[<p>Looking forward to seeing what you come up with.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
