0
0
DBMS Theoryknowledge~10 mins

Deadlock handling in databases in DBMS Theory - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Deadlock handling in databases
Transaction T1 requests Resource R1
Transaction T2 requests Resource R2
T1 waits for R2 held by T2
T2 waits for R1 held by T1
Deadlock detected
Deadlock handling: Choose victim
Abort victim transaction
Release victim's resources
Other transaction proceeds
Deadlock resolved
Transactions request resources and wait; if each waits for the other, a deadlock occurs. The system detects this and aborts one transaction to free resources and resolve the deadlock.
Execution Sample
DBMS Theory
-- Two transactions T1 and T2
BEGIN TRANSACTION T1;
LOCK Resource R1;
WAIT for Resource R2;

BEGIN TRANSACTION T2;
LOCK Resource R2;
WAIT for Resource R1;
Two transactions lock different resources and then wait for each other's locked resource, causing a deadlock.
Analysis Table
StepTransactionActionResource LockedWaiting ForDeadlock Status
1T1Locks R1R1NoneNo
2T2Locks R2R2NoneNo
3T1Waits for R2R1R2No
4T2Waits for R1R2R1Yes - Deadlock detected
5SystemDetects deadlockR1, R2T1 & T2 waiting on each otherYes
6SystemChooses victim (T2)R2N/AYes
7SystemAborts T2NoneN/ANo
8T1Proceeds, locks R2R1, R2NoneNo
💡 Deadlock resolved by aborting T2, freeing R2 for T1 to proceed
State Tracker
VariableStartAfter Step 1After Step 2After Step 3After Step 4After Step 7Final
T1 ResourcesNoneR1R1R1R1R1R1, R2
T2 ResourcesNoneNoneR2R2R2NoneNone
T1 Waiting ForNoneNoneNoneR2R2NoneNone
T2 Waiting ForNoneNoneNoneNoneR1NoneNone
Deadlock StatusNoNoNoNoYesNoNo
Key Insights - 3 Insights
Why does the system abort one transaction instead of both when a deadlock is detected?
Aborting one transaction frees its locked resources so the other can continue, resolving the deadlock efficiently. Aborting both would waste more work. See execution_table steps 6 and 7.
How does the system know a deadlock has occurred?
The system detects a cycle in the waiting graph where transactions wait on each other’s locked resources, as shown in execution_table step 5.
What happens to the resources held by the aborted transaction?
They are released immediately so other transactions can lock them, as shown in execution_table step 7.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 4. What is the deadlock status?
ANo deadlock detected
BTransaction T1 aborted
CDeadlock detected
DTransaction T2 proceeds
💡 Hint
Check the 'Deadlock Status' column at step 4 in the execution_table.
At which step does the system abort a transaction to resolve the deadlock?
AStep 7
BStep 5
CStep 6
DStep 8
💡 Hint
Look for the step where 'Aborts T2' is the action in the execution_table.
If transaction T1 was chosen as the victim instead of T2, how would the variable 'T1 Resources' change after step 7?
AT1 Resources would remain R1
BT1 Resources would be None
CT1 Resources would include R2
DT1 Resources would be R2 only
💡 Hint
Refer to variable_tracker row 'T1 Resources' and see what happens when a transaction is aborted.
Concept Snapshot
Deadlock occurs when two or more transactions wait indefinitely for each other's locked resources.
The system detects deadlocks by finding cycles in waiting.
Deadlock handling involves aborting one transaction (victim) to free resources.
The aborted transaction releases its locks, allowing others to proceed.
This ensures the database continues without freezing.
Full Transcript
Deadlock handling in databases happens when two transactions each hold a resource the other needs, causing both to wait forever. The system detects this cycle of waiting and resolves it by aborting one transaction, called the victim. This abort releases the victim's locked resources so the other transaction can continue. The process involves locking resources, waiting, detecting deadlock, choosing a victim, aborting it, and then continuing with the remaining transaction. This prevents the database from freezing and keeps transactions moving.