<?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; Difference Between NOLOCK and NOWAIT Hints</title>
	<atom:link href="http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sat, 25 May 2013 01:31:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Pankaj</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-472641</link>
		<dc:creator><![CDATA[Pankaj]]></dc:creator>
		<pubDate>Fri, 10 May 2013 12:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-472641</guid>
		<description><![CDATA[Hi Pinal,

Can we set something on Database level so that my all select will by default NOLOCK. Is it possible ?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Can we set something on Database level so that my all select will by default NOLOCK. Is it possible ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun Bc</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-472637</link>
		<dc:creator><![CDATA[Varun Bc]]></dc:creator>
		<pubDate>Fri, 10 May 2013 12:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-472637</guid>
		<description><![CDATA[@varun Khanna,

The NOLOCK result is a dirty read.. 

The transaction is occuring and not occured,if you see the SQL query properly Transaction is opened and not ended.

suppose the transaction fails and is rolled back, the delete will not occur and the record will be in the table

Pinal sir, correct me if i am wrong

Regards,
Varun]]></description>
		<content:encoded><![CDATA[<p>@varun Khanna,</p>
<p>The NOLOCK result is a dirty read.. </p>
<p>The transaction is occuring and not occured,if you see the SQL query properly Transaction is opened and not ended.</p>
<p>suppose the transaction fails and is rolled back, the delete will not occur and the record will be in the table</p>
<p>Pinal sir, correct me if i am wrong</p>
<p>Regards,<br />
Varun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guri</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-418148</link>
		<dc:creator><![CDATA[Guri]]></dc:creator>
		<pubDate>Tue, 05 Feb 2013 13:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-418148</guid>
		<description><![CDATA[yes, because the first transaction is not committed yet. you can rollback that transaction that means you still have single row in the table versus query with NOLOCK said zero rows]]></description>
		<content:encoded><![CDATA[<p>yes, because the first transaction is not committed yet. you can rollback that transaction that means you still have single row in the table versus query with NOLOCK said zero rows</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun Khanna</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-416876</link>
		<dc:creator><![CDATA[Varun Khanna]]></dc:creator>
		<pubDate>Sat, 02 Feb 2013 19:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-416876</guid>
		<description><![CDATA[Pinal,
Correct me if i am wrong !!
Below is the scenario you described
a) You deleted record from table
b) Executed query with NOWAIT and got error..That looks fine
c) Executed query with NOLOCK and it returned no record / error and that looks fine as we already deleted record from table.

So, my question is with NOLOCK we are getting correct result..right?

Am i missing something....

Varun]]></description>
		<content:encoded><![CDATA[<p>Pinal,<br />
Correct me if i am wrong !!<br />
Below is the scenario you described<br />
a) You deleted record from table<br />
b) Executed query with NOWAIT and got error..That looks fine<br />
c) Executed query with NOLOCK and it returned no record / error and that looks fine as we already deleted record from table.</p>
<p>So, my question is with NOLOCK we are getting correct result..right?</p>
<p>Am i missing something&#8230;.</p>
<p>Varun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dibyajyoti Das</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-416162</link>
		<dc:creator><![CDATA[Dibyajyoti Das]]></dc:creator>
		<pubDate>Fri, 01 Feb 2013 07:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-416162</guid>
		<description><![CDATA[Hello Sir, Please Tell me how to take differential backup in sql server , Please give me commands, I have SQL Backup and Ftp but I want to take using command day by day basis]]></description>
		<content:encoded><![CDATA[<p>Hello Sir, Please Tell me how to take differential backup in sql server , Please give me commands, I have SQL Backup and Ftp but I want to take using command day by day basis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilesh Patel</title>
		<link>http://blog.sqlauthority.com/2013/02/01/sql-server-difference-between-nolock-and-nowait-hints/#comment-416122</link>
		<dc:creator><![CDATA[Nilesh Patel]]></dc:creator>
		<pubDate>Fri, 01 Feb 2013 05:14:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22553#comment-416122</guid>
		<description><![CDATA[Hi Pinal ,

Good Article , really helpful

but i have question can I use 2 With Clause with one query ?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal ,</p>
<p>Good Article , really helpful</p>
<p>but i have question can I use 2 With Clause with one query ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
