Tagged Questions
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
6answers
823 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) ...
0
votes
2answers
280 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
879 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 ...