How do you look up a default global table locking hint?
-- Questions
There is no global setting. The default is always READ COMMITTED
It can be changed at
SET TRANSACTION ISOLATION LEVEL
][]NOLOCK everywhere is utterly misguided And here too:
Edit: After comment about query timeout...
A query with NOLOCK can still consume massive CPU and IO resources. Locking isn't that big an issue. If it is, then another query is taking too long, probably consuming massive CPU and IO resources...