Tagged Questions
5
votes
3answers
1k views
What can happen as a result of using (nolock) on every SELECT in SQL Sever?
I get that the (nolock) optimizer hint allows for "dirty reads", but under what very specific scenarios is this a bad idea? I've never seen such widespread use of (nolock) in an organization, and it ...
1
vote
1answer
316 views
Stored procedures and OPTIMIZE FOR UNKNOWN
I've read up on the SQL Server 2008 OPTIMIZE FOR UNKNOWN query hint. I understand how it works.
However, I have a question on where and when to use it. It cannot be specified inside a UDF. It can be ...