Tagged Questions
1
vote
1answer
65 views
SQL Server 2008 - get current LOCK_ESCALATION on particular table
Is there a way to find the current setting for LOCK_ESCALATION on particular table? Can it be found through system views?
2
votes
1answer
240 views
Sql server update query locking stages?
Looking at
update MyTable
set Status = 1
where Status = 0
of course- the where is calculated before the actual update.
but does this filtering (where Status = 0) is also inside the lock ?
I mean ...
