In Repeatable Read Isolation Level, it does not prevent other transactions from inserting new rows into the tables which have been selected in the current transaction. I want to know the theory behind when DELETE or UPDATE query comes? Consider the following example which I'm trying to solve.
Assume use of Relational Database Management System (RDBMS) and rigorous 2-Phase locking approach for concurrency control.
ID Balance Name
1 12 A
2 18 B
10 100 C
The following timing diagram, shows the execution of two concurrent transactions based on the above Customer table, T1 and T2, both of which execute on REPEATABLE_READ transaction isolation level.
T1 T2
SELECT * FROM Customer |
WHERE Balance BETWEEN 10 AND 20; |
| **QUERY X**
| COMMIT; "
SELECT * FROM Customer |
WHERE Balance BETWEEN 10 AND 20; |
Will the Phantom anomaly be exhibited if instead of an INSERT query, one of the following SQL statements is replaced into QUERY X on T2 ? Justify your answer.
- UPDATE Customer SET Balance = 14 WHERE Balance = 100;
- DELETE FROM Customer WHERE Balance = 12;
I'm new to DBMS, So I'm very much appreciated for kind explanations which help me to have a better understanding of these problems.
You can easily test this for yourself.
Setup
Connection 1 (leaves transaction open)
Repeatable read differs from read committed (locking version) as it retains the
S
locks on rows matching theWHERE
clause rather than releasing them as soon as the row is read.The query against
sys.dm_tran_locks
shows that it holds two RID locks matching the two rows returned.Trace flag 1200 output for the above
shows that it acquires three row
S
locks and keeps hold of the locks on the rows that qualify for the filterIf you now try in another connection
you will see that this is blocked by the row lock held by the original transaction. Note that this will eventually succeed when the original transaction commits and releases its locks.
Cancel that one and try
this succeeds straight away. The original transaction never retained the
S
lock on that row as even though it was read (due to lack of index onBalance
) it did not qualify for theWHERE
clause and the lock was released per thereleasing lock
output above.