Write–read conflict
(重定向自Dirty Read)
In computer science, in the field of databases, Write-Read Conflict, also known as reading uncommitted data, is a computational anomaly associated with interleaved execution of transactions.
Given a schedule S
T2 could read a database object A, modified by T1 which hasn't committed. This is a dirty read.