<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server Planet &#187; blocking</title>
	<atom:link href="http://sqlserverplanet.com/tag/blocking/feed" rel="self" type="application/rss+xml" />
	<link>http://sqlserverplanet.com</link>
	<description>Tips and Articles on SQL Server</description>
	<lastBuildDate>Tue, 31 Jan 2012 01:33:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Blocking Processes (lead blocker)</title>
		<link>http://sqlserverplanet.com/troubleshooting/blocking-processes-lead-blocker</link>
		<comments>http://sqlserverplanet.com/troubleshooting/blocking-processes-lead-blocker#comments</comments>
		<pubDate>Thu, 18 Jun 2009 04:53:53 +0000</pubDate>
		<dc:creator>Derek Dieter</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[blocking]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=244</guid>
		<description><![CDATA[SELECT
	spid
	,status
	,loginame	= SUBSTRING(loginame, 1, 12)
	,hostname	= SUBSTRING(hostname, 1, 12)
	,blk		= CONVERT(char(3), blocked)
	,open_tran
	,dbname		= SUBSTRING(DB_NAME(dbid),1,10)
	,cmd
	,waittype
	,waittime
	,last_batch
FROM master.dbo.sysprocesses
WHERE spid IN (SELECT blocked FROM master.dbo.sysprocesses)
AND blocked = 0]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/troubleshooting/blocking-processes-lead-blocker/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Find Resource Currently Involved in Blocking</title>
		<link>http://sqlserverplanet.com/dmv-queries/sql-server-find-resource-currently-involved-in-blocking</link>
		<comments>http://sqlserverplanet.com/dmv-queries/sql-server-find-resource-currently-involved-in-blocking#comments</comments>
		<pubDate>Mon, 01 Jun 2009 06:38:35 +0000</pubDate>
		<dc:creator>Derek Dieter</dc:creator>
				<category><![CDATA[DMV Queries]]></category>
		<category><![CDATA[blocking]]></category>
		<category><![CDATA[DMV]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=77</guid>
		<description><![CDATA[SELECT DISTINCT objname = object_name(p.object_id) FROM sys.partitions p JOIN sys.dm_tran_locks t1 ON p.hobt_id = t1.resource_associated_entity_id Related Posts:»Monitor Queries against a Table»Rebuild and Reorganize Fragmented Indexes»Find Best Clustered Index»Index Usage DMV»Reindex All Tables in a Database»Select Distinct»List All Tables in a Database»Query Which Tables are Partitioned»Find All Queries Run Against a Table»Choosing the Best Clustered IndexPopular [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/dmv-queries/sql-server-find-resource-currently-involved-in-blocking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

