<?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/"
		>
<channel>
	<title>Comments on: SQL Server Lock Contention Tamed: The Joys Of NOLOCK and ROWLOCK</title>
	<atom:link href="http://www.sql-server-performance.com/2000/lock-contention-nolock-rowlock/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sql-server-performance.com/2000/lock-contention-nolock-rowlock/</link>
	<description>SQL Server Performance Tuning</description>
	<lastBuildDate>Fri, 14 Jun 2013 19:09:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Romain</title>
		<link>http://www.sql-server-performance.com/2000/lock-contention-nolock-rowlock/#comment-2939</link>
		<dc:creator>Romain</dc:creator>
		<pubDate>Thu, 17 Jan 2013 06:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=163#comment-2939</guid>
		<description><![CDATA[You can also prevent TableLock escalation by this transaction :
BEGIN TRAN
  SELECT * FROM []Table WITH(UPDLOCK,HOLDLOCK) WHERE 0 = 1;
LOOP:
  WAITFOR DELAY &#039;23:00:00&#039;;
  GOTO LOOP;
COMMIT TRAN;]]></description>
		<content:encoded><![CDATA[<p>You can also prevent TableLock escalation by this transaction :</p>
<p>BEGIN TRAN<br />
  SELECT * FROM []Table WITH(UPDLOCK,HOLDLOCK) WHERE 0 = 1;<br />
LOOP:<br />
  WAITFOR DELAY &#8217;23:00:00&#8242;;<br />
  GOTO LOOP;<br />
COMMIT TRAN;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
