So, with nolock will not take any locks. Will it still honor outstanding locks? For example, if I attempt to select a row with nolock, which another process has put an exclusive lock on, will my select with nolock be blocked, or will it select the row?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I think the use of "NOLOCK" results in a dirty read which means that the data which is present before some locking has happened. Suppose, if a write lock has been put on a table to update some data and we try to read the data using "NOLOCK", the data which is present before updating is returned to us.

Hope this helps!!

link|improve this answer
A dirty read actually means reading uncommitted records, not reading records before an update. – JNK Sep 8 '11 at 20:55
Exactly what I was wondering, thank you. – aepheus Sep 8 '11 at 20:57
@JNK - just to confirm, you are referring to the difference of [lock [read] update unlock] - before, as opposed to [lock update [read] error rollback unlock] - uncommitted? – aepheus Sep 8 '11 at 21:08
feedback

Your Answer

 
or
required, but never shown

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