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
2answers
138 views
How can I choose different hints for different joins for a single table in a query hint?
Suppose I have the following query:
select * from A, B, C, D
where A.x = B.x
and B.y = C.y
and A.z = D.z
I have indexes on A.x and B.x and B.y and C.y and D.z
There is no index on A.z.
How can I ...