vote up 3 vote down star
3

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)
flag

3 Answers

vote up 6 vote down check

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|flag
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 ... – TrickyNixon Oct 16 '08 at 20:55
... 2005 and not have any effect. We're running 2000 right now (thanks to our vendor) and there no similar statement in the documentation. – TrickyNixon Oct 16 '08 at 20:57
1  
Your friend needs to read the documentation. Table Hint (Transact-SQL) msdn.microsoft.com/en-us/library/… – 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
vote up 3 vote down

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|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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