Tagged Questions
8
votes
1answer
3k views
What effect does HOLDLOCK have on UPDLOCK?
I have seen many examples of the HOLDLOCK hint being used in combination with UPDLOCK (like this). However as I read the documentation for these hints, it seems that HOLDLOCK should be redundant, ...
2
votes
2answers
448 views
In the UPDATE statement, are NOLOCK hint honored in the FROM clause?
Given the following update statement:
UPDATE @TableVariable
SET city = T2.city
FROM @TableVariable TV
INNER JOIN dbo.TABLE_1 T1 WITH (NOLOCK)
ON (TV.customer_id = T1.customer_id)
INNER JOIN ...
1
vote
5answers
428 views
Hints in Sql Server
Are hints really necessary for every sql statement? We have a dba who is anal about it and asks us to put hints on every select and update statements in our stored procs. Is this really necessary?