Two transactions T1 and T2 run concurrently and access the same data item A. Their operations (in order of time) are:
T1
reads
A = 100
.
T2
reads
A = 100
.
T1
writes
A = A + 10
(so conceptually writes
110
).
T2
writes
A = A - 10
(using its previously read value
100
, so writes
90
).
Which description best characterizes the concurrency problem here?
Options:
Login required