Tagged Questions
The nolock tag has no wiki summary.
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 ...
4
votes
4answers
2k views
Using NOLOCK Hint in EF4?
We're evaluating EF4 and my DBA says we must use the NOLOCK hint in all our SELECT statements. So I'm looking into how to make this happen when using EF4.
I've read the different ideas on how to ...
4
votes
6answers
825 views
In a Data Warehouse scenario is there any disadvantage to using WITH(NOLOCK)
I have a Kimball-style DW (facts and dimensions in star models - no late-arriving facts rows or columns, no columns changing in dimensions except expiry as part of Type 2 slowly changing dimensions) ...
3
votes
1answer
75 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
480 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
4answers
6k views
syntax for nolock in sql
I have seen sql statements using nolock and with(nolock)
e.g -
select * from table1 nolock where column1 > 10
AND
select * from table1 with(nolock) where column1 > 10
Which of the above ...
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....
3
votes
4answers
2k views
High volume site using ADO.NET TransactionScope vs ExecuteCommand on NOLOCK, READ UNCOMMITTED directly?
Just read this interesting article by Omar on his blog Linq to SQL solve Transaction deadlock and Query timeout problem using uncommitted reads and at the end
Javed Hasan started arguing with him ...
2
votes
1answer
86 views
LINQ-To-SQL NOLOCK (NOT ReadUncommitted)
I've been searching for some time now in here and other places and can't find a good answer to why Linq-TO-SQL with NOLOCK is not possible..
Every time I search for how to apply the with(NOLOCK) hint ...
2
votes
2answers
103 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, ...
2
votes
1answer
281 views
In LINQ-To-SQL, should I use NOLOCK to improve performance?
Our DBA came to us with information that our LINQ queries are creating many thousands of locks on the database. A developer on our team dug up this Hanselman post as a possible solution to our ...
2
votes
2answers
443 views
In the UPDATE statement, are NOLOCK hint honored in the FROM clause?
Given the following update statement:
UPDATE @TableVariable
SET city = T2.city
FROM @TableVariable TV
INNER JOIN dbo.TABLE_1 T1 WITH (NOLOCK)
ON (TV.customer_id = T1.customer_id)
INNER JOIN ...
2
votes
1answer
1k views
Java Hibernate HQL queries with nolock
Is there a way to run these queries as if I added a (NOLOCK) hint to them?
2
votes
2answers
1k views
PostgreSQL Equivalent of SQLServer's NoLock Hint
In SQLServer, you can use syntax "(nolock)" to ensure the query doesn't lock the table or isn't blocked by other queries locking the same table.
e.g.
SELECT * FROM mytable (nolock) WHERE id = blah
...
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
1answer
443 views
Nolock as default for Create One ObjectContext per Request for EF4
Is there any side effect for this code:
///This code runs per request
public static MyObjectContext CreateEntity()
{
MyObjectContext db=new MyObjectContext();
db.Connection.Open();
var con = ...
1
vote
1answer
210 views
When modifying linq-to-sql commandtext, should the connection be closed?
I'm modifying the commandtext of linq-to-sql to force it to use nolock, like this...
if (db.Connection.State == System.Data.ConnectionState.Closed)
db.Connection.Open();
var cmd = ...
1
vote
2answers
252 views
How do you use NOLOCK with TADOQuery and TADOTable?
I have the SQL text "SELECT * FROM TABLE1 WITH (NOLOCK)".
Two questions:
How do I make my TADOQuery use the NOLOCK hint without having to include that in the SQL text? I have literally thousands of ...
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 ...
0
votes
1answer
124 views
support for nolock in SQL Azure
Does anyone have an idea as to why SQL Azure does not support with nolock SQL statements. Does Microsoft has any plans of supporting this in the future?
0
votes
1answer
818 views
Problem with NOLOCK on SQL 2008 using a temporary table and select statements
I am using SQL 2008 and I am getting an error most of the time I run a stored procedure. There error is: could not continue scan with nolock due to data movement. I have looked online for this and it ...
0
votes
2answers
281 views
Using WITH(NOLOCK) to increase performance
I have seen developers using WITH(nolock) in the query, is there any disadvantage of it?
Also, what is the default mode of execution of query? My database do not have any index.
Is there any other ...
0
votes
3answers
93 views
Server-side NOLOCK in SQL Server
I know that in the Oracle DB I can configure a flag, that all select queries running on a specific DB can be run as if the NOLOCK hint was added.
Is there something similar in SQL Server?
0
votes
3answers
880 views
Does ReadUncommitted imply NoLock
When writing a SQL statement in SQL Server 2005, does the READUNCOMMITTED query hint imply NOLOCK or do I have to specify it manually too?
So is:
With (NoLock, ReadUnCommitted)
the same as:
With ...