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 & ...
3
votes
3answers
520 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 ...