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 ...
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
827 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
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
2answers
105 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
2answers
448 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 ...
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
207 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
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?