Answers for "deadlock sql"

SQL
0

t sql check active deadlock

select * from sys.sysprocesses where blocked > 0
Posted by: Guest on June-03-2020
13

deadlock

Deadlock is a situation where a set of processes 
are blocked because each process is holding a resource 
and waiting for another resource acquired by some other
process.Process 1 is holding Resource 1 and waiting for
resource 2 which is acquired by process 2, and process 2
is waiting for resource 1.
Posted by: Guest on August-23-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language