Encyclopedia > Overwriting uncommitted data

  Article Content

Write-Write conflict

Redirected from Overwriting uncommitted data

In computer science, in the field of databases, Write-Write Conflict, also known as overwriting uncommitted data is a computational anomaly associated with interleaved execution of transactions.

Given a schedule H

<math>H = \begin{bmatrix}
T1 & T2 \\ W(A) & \\
 & W(B) \\
W(B) & \\ Com. & \\
 & W(A)\\
 & Com. \end{bmatrix}</math>

Note that there is no read in this schedule. The writes are called blind writes.

We have a lost update. Any attempts to make this schedule serial would give off two different results (Either T1's version of A/B is shown, or T2's version of A and B is shown.), and would not be the same as the above schedule. This schedule would not be serializable.

Strict 2PL, overcomes this inconsistency by locking T1 out from B. Unfortunately, deadlocks is something Strict 2PL does not overcome all the time.

See also:



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Sanskrit language

... Sanskrit language Sanskrit is a living second language and is one of the official languages of India. For India, Sanskrit occupies a role similar to that of ...

 
 
 
This page was created in 27.9 ms