unrepeatable reads assume t7 reads x twice during


Unrepeatable reads: Assume T7 reads X twice during its implementation. If it did not update X itself it could be very disturbing to see a dissimilar value of X in its next read. But this could occur if, among the two read operations, another transaction modifies X.

 

T7

T8

Assumed value of

X=2000

T7

T8

READ X

 

2000

 

 

UPDATE X

 

3000

READ X

 

3000

 

 

Therefore, the inconsistent values are read and results of the transaction may be in fault.

 

Request for Solution File

Ask an Expert for Answer!!
Database Management System: unrepeatable reads assume t7 reads x twice during
Reference No:- TGS0210143

Expected delivery within 24 Hours