vote up 19 vote down star
1

Can someone explain the implications of using "with (nolock)" on queries, when you should/shouldn't use it?

For example, if you have a banking application with high transaction rates and a lot of data in certain tables, in what types of queries would nolock be okay? Are there cases when you should always use it/never use it?

flag

11 Answers

vote up 14 vote down check

WITH (NOLOCK) is the equivalent of using READ UNCOMMITED as a transaction isolation level. So, you stand the risk of reading an uncommitted row that is subsequently rolled back, i.e. data never made it into the database. So, while it can prevent reads being deadlocked by other operations, it comes with a risk. In a banking application with high transaction rates, it's probably not going to be the right solution to whatever problem you're trying to solve with it IMHO.

link|flag
3  
Most banking applications can safely use nolock because they are transactional in the business sense. You only write new rows, you never update them. – Jonathan Allen Mar 26 at 17:56
@Grauenwolf- A very interesting point. – John Sansom Mar 26 at 19:20
1  
@Grauenwolf- An inserted but uncommitted row could still lead to dirty reads. – saasman Mar 26 at 21:03
@Saasman- If you don't ever rollback transactions, that doesn't matter. And with a insert-only table, the chances of a rollback are slim to none. And if they do occur, you will still fix it all in the end of day variance report. – Jonathan Allen Mar 27 at 18:47
vote up 9 vote down

The question is what is worse, a deadlock or a wrong value?

For finanical databases, deadlocks are far worse than wrong values. I know that sounds backwards, but hear me out. The traditional example of DB transactions is you update two rows, subtracting from one and adding to another. That is bullshit.

In a financial database you use business transactions. That means adding one row to each account. It is of upmost importance that these transactions complete and the rows are successfully written.

Getting the account balance temporarily wrong isn't a big deal, that is what the end of day reconciliation is for. And an overdraft from an account is far more likely to occur because two ATMs are being used at once than because of a uncommitted read from a database.

That said, SQL Server 2005 fixed most of the bugs that made nolock necessary. So unless you are using SQL Server 2000 or eariler, you shouldn't need it.

EDIT: Info on Row Level Versioning

http://www.sqlservercentral.com/articles/SQL+Server+2005/62464/

link|flag
Getting an account balance temporarily wrong is not a big deal? What if that transaction is the one where you are taking out cash from an atm without any overdraft limit? – Learning Mar 26 at 18:15
We use SQL Server 2005 and get deadlocks all the time - is there a setting you need to use to get row versioning instead of table locking? – mbeckish Mar 26 at 18:22
I'll add the link to my submission. – Jonathan Allen Mar 27 at 18:41
@Learning: What happens if you take out the money 30 seconds before someone charges your card? Until all communication is turly instaneous, overdrafts will be a fact of life. – Jonathan Allen Mar 27 at 18:44
vote up 8 vote down

The text book example for legitimate usage of the nolock hint is report sampling against a high update OLTP database.

To take a topical example. If a large US high street bank wanted to run an hourly report looking for the first signs of a city level run on the bank, a nolock query could scan transaction tables summing cash deposits and cash withdrawals per city. For such a report the tiny percentage of error caused by rolled back update transactions would not reduce the value of the report.

link|flag
vote up 4 vote down

NOLOCK is equivalent to READ UNCOMMITTED, however Microsoft says you should not use it for UPDATE or DELETE statements:

For UPDATE or DELETE statements: This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.

http://msdn.microsoft.com/en-us/library/ms187373.aspx

This article applies to SQL Server 2005, so the support for NOLOCK exists if you are using that version. In order to future-proof you code (assuming you've decided to use dirty reads) you could use this in your stored procedures:

SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

link|flag
vote up 1 vote down

You can use it when you're only reading data, and you don't really care about whether or not you might be getting back data that is not committed yet.

It can be faster on a read operation, but I cannot really say by how much....

In general, I recommend against using it - reading uncommitted data can be a bit confusing at best.

Marc

link|flag
it would be nice if you mentioned the fact that SQL Server 2005 has row versioning so nolocks aren't even needed any more. – Jonathan Allen Mar 26 at 18:09
Well, the "with (nolock)" still has its place even in SQL Server 2005 - but the benefits are getting slimmer and slimmer, that's true. – marc_s Mar 26 at 20:38
vote up 1 vote down

I've used to retrieve a "next batch" for things to do. It doesn't matter in this case which exact item, and I have a lot of users running this same query.

link|flag
vote up 1 vote down

I use with (nolock) hint particularly in SQLServer 2000 databases with high activity. I am not certain that it is needed in SQL Server 2005 however. I recently added that hint in a SQL Server 2000 at the request of the client's DBA, because he was noticing a lot of SPID record locks.

All I can say is that using the hint has NOT hurt us and appears to have made the locking problem solve itself. The DBA at that particular client basically insisted that we use the hint.

By the way, the databases I deal with are back-ends to enterprise medical claims systems, so we are talking about millions of records and 20+ tables in many joins. I typically add a WITH (nolock) hint for each table in the join (unless it is a derived table, in which case you can't use that particular hint)

link|flag
SQL Server 2005 added "row versioning" which should greatly reduce the need for nolocks. We recently upgraded and are not in training our DBAs to stop using them. – Jonathan Allen Mar 26 at 18:11
vote up 1 vote down

Simple answer - whenever your SQL is not altering data, and you have a query that might interfere with other activity (via locking).

It's worth considering for any queries used for reports, especially if the query takes more than, say, 1 second.

It's especially useful if you have OLAP-type reports you're running against an OLTP database.

link|flag
vote up 0 vote down

Use nolock when you are okay with the "dirty" data. Which means nolock can also read data which is in the process of being modified and/or uncommitted data.

It's generally not a good idea to use it in high transaction environment and that is why it is not a default option on query.

link|flag
The only time you need it is in a high transaction environment. If your tables are mostly idle, then you wouldn't gain anything by it. – Jonathan Allen Mar 26 at 18:13
vote up 0 vote down

If you are handling finance transactions then you will never want to use nolock. nolock is best used to select from large tables that have lots updates and you don't care if the record you get could possibly be out of date.

For financial records (and almost all other records in most applications) nolock would wreak havoc as you could potentially read data back from a record that was being written to and not get the correct data.

link|flag
Surprisingly, when working with financial data this isn't an issue. Since rows are never edited and accounts are reconciled at the end of the day, reading temporarily bogus data doesn't do anything. – Jonathan Allen Mar 26 at 18:00
vote up 0 vote down

Another case where it's usually okay is in a reporting database, where data is perhaps already aged and writes just don't happen. In this case, though, the option should be set at the database or table level by the administrator by changing the default isolation level.

In the general case: you can use it when you are very sure that it's okay to read old data. The important thing to remember is that its very easy to get that wrong. For example, even if you get it right at the time you add it are you sure something won't change in the database in the future to make these updates more important?

I'll also 2nd the notion that it's probably not a good idea in banking app. Or inventory app. Or anywhere you're thinking about transactions.

link|flag
1  
As a person who works on banking applications, I have to say no-locks are not a problem. Transactional records, that is rows that are inserted but never updated or deleted, are surprising resistant to the problems of reading uncommited data. – Jonathan Allen Mar 26 at 18:02

Your Answer

Get an OpenID
or

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