Tagged Questions

3
votes
5answers
4k 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....
1
vote
1answer
63 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 ...