Tagged Questions

86
votes
14answers
50k views

SQL - when should you use “with (nolock)”

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 ...
27
votes
6answers
14k views

Is the NOLOCK (Sql Server hint) bad practice?

I'm in the business of making website and applicatins that are not mission critical -> eg. banking software, space flight, intensive care monitoring application, etc. You get the idea. So, with that ...
7
votes
6answers
2k views

When is it appropriate to use NOLOCK?

I am having timeout issues and deadlocks from time to time with some long running queries. I'm wondering when is it most appropriate to use NOLOCK and where? Do I use it on the updates & ...
4
votes
3answers
2k views

SQL Server NOLOCK and joins

Background: I have a performance-critical query I'd like to run and I don't care about dirty reads. My question is; If I'm using joins, do I have to specify the NOLOCK hint on those as well? For ...
3
votes
1answer
76 views

Transaction Concurrency in C#

user 1 : begin tran select * from items with(nolock); insert into orders (odate) values(getdate()); insert into OrderData values((select max(orderid) from Orders with(nolock)),1,1); update Items ...
3
votes
3answers
481 views

How can I avoid a deadlock between these two SQL statements?

I have two stored procedures running in separate threads, running on SQL Server 2005. One procedure inserts new rows into a set of tables and the other procedure deletes old data from the same set of ...
3
votes
5answers
3k views

SQL Server - how to set (nolock) hint as a default?

is there some way to tell sql server to use the (nolock) hint or every select in a stored procedure? is pretty tiresome to add it to each an every select....
2
votes
2answers
104 views

High Traffic SQL Table intermittent Null Output Parameter

I'm getting an intermittent null value for an output parameter for a stored procedure I have. I'm wondering if it has to do with the NOLOCK inside the stored procedure. It works most of the time, ...
1
vote
1answer
55 views

with nolock and exclusive locks

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 ...
1
vote
2answers
1k views

TSQL NOLOCK VIEW and Store procedure

In our company we tend to use views and store procedures. We've recently started to implement the NOLOCK statement to a lot of our views. I was wondering that , if I am applying NOLOCK to a view, it ...
1
vote
2answers
316 views

Can I apply NOLOCK with a database-wide setting?

Is there a way to make WITH(NOLOCK) be applied on any SELECT statement run on a particular database?
1
vote
2answers
206 views

Will SQL Server NOLOCK hint return partially written rows?

First of all I'm not asking if NOLOCK should or should not be used. Let's get past that. I guess the question comes down to how sql server writes data? Is an entire row written at once or does it ...
0
votes
3answers
85 views

C# T-SQL statement includes “with(nolock)” error

Short: SQL statement in my C# code is not working. with(nolock) is breaking the code. Detailed: Below are my errors and the code where I am getting the error. The code is supposed to connect to my ...
0
votes
0answers
18 views

SQL: found invalid xml data during concurrent read/update

I have a table that contains about 200,000 records, and one column of it stores some info in xml format, but as nvarchar. My problem is, every few minutes, the following sql snippet throws an ...