5 questions to test your understanding
Transaction T1 reads an account balance and sees $1000. T2 then updates the balance to $200 and commits. T1 re-reads the same row and sees $200. Which isolation level permits this behavior?
Which of the following scenarios describes a non-repeatable read (and not another isolation anomaly)?
The non-repeatable read anomaly can occur under READ COMMITTED isolation.
A non-repeatable read and a phantom read are the same anomaly described differently.
Why does REPEATABLE READ prevent non-repeatable reads, and what is the cost of this stronger guarantee?