up vote 13 down vote favorite
5
share [g+] share [fb]

I guess the real question is:

If I don't care about dirty reads, will adding the with (NOLOCK) hint to a SELECT statement affect the performance of:

  1. the current SELECT statement
  2. other transactions against the given table

Example:

Select * 
from aTable with (NOLOCK)
link|improve this question

feedback

4 Answers

up vote 22 down vote accepted

1) Yes

2) Yes

Nolock typically (depending on your DB engine) means give me your data, and I don't care what state it is in, and don't bother holding it still while you read from it. It is all at once faster, less resource intensive, and very very dangerous.

If I can give you just one line of advise - never do an update or perform anything system critical based on data that originated from a nolock read, or you're just asking for hurt at some point or another.

link|improve this answer
Thanks. This is what I've been assuming but was questioned about it by a colleague and my initial research made me question myself. SQLServer 2005 documentation says that with NOLOCK is the default locking scheme for all select statements! I'd guess then that my hints would be redundant in ... – Bob Probst Oct 16 '08 at 20:55
1  
... 2005 and not have any effect. We're running 2000 right now (thanks to our vendor) and there no similar statement in the documentation. – Bob Probst Oct 16 '08 at 20:57
1  
Your friend needs to read the documentation. Table Hint (Transact-SQL) msdn.microsoft.com/en-us/library/ms187373(SQL.90).aspx – Pittsburgh DBA Oct 16 '08 at 21:48
Side note: if this was true, it would be absolute chaos. – Pittsburgh DBA Oct 16 '08 at 21:53
feedback

NOLOCK makes most SELECT statements faster, because of the lack of shared locks. Also, the lack of issuance of the locks means that writers will not be impeded by your SELECT.

NOLOCK is functionally equivalent to an isolation level of READ UNCOMMITTED. The main difference is that you can use NOLOCK on some tables but not others, if you choose. If you plan to use NOLOCK on all tables in a complex query, then using SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED is easier, because you don't have to apply the hint to every table.

Here is information about all of the isolation levels at your disposal, as well as table hints.

SET TRANSACTION ISOLATION LEVEL

Table Hint (Transact-SQL)

link|improve this answer
feedback

It will be faster because it doesnt have to wait for locks

link|improve this answer
How much faster? Could you provide any speed improvements numbers? – Jenea Apr 16 '10 at 11:51
"How much" depends on what you are specifically doing with your data and how long you typically have to wait for a lock acquisition. – StingyJack Apr 19 '10 at 16:40
feedback

In addition to what is said above, you should be very aware that nolock actually imposes the risk of you not getting rows that has been committed before your select.

See http://blogs.msdn.com/sqlcat/archive/2007/02/01/previously-committed-rows-might-be-missed-if-nolock-hint-is-used.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.