1,113 views
1 votes
1 votes
Correct me where i am wrong if i am wrong Please :)

Dirty Read means Reading the data of uncommited transaction.

For removing the Dirty read we should always read after the transaction which wrote X commits , this is the only way to remove dirty read rt ?

T1            T2

r(x)

w(x)

Commit

                   r(x)

Above Shown is The Only way of removing the Dirty read rt ?

My doubt is its very similar to the Solution of Cascadeless.

1 Answer

Related questions

0 votes
0 votes
0 answers
1
sripo asked Nov 25, 2018
1,253 views
If I have dirty read which is write-read conflict does it imply that the schedule is non recoverable?Do all anomalies result of conflict result in non recoverable thereby...
1 votes
1 votes
1 answer
3
budhu asked Jan 29, 2018
1,508 views
The given schedule:R1 (A) R2 (B) W2 (B) W1(A) W2 (A) Commit2 R1 (C)is revoreable, cascadeless or strict?
0 votes
0 votes
1 answer
4
sripo asked Nov 25, 2018
699 views
S=r1(A),w2(A),r3(A),w1(A),w3(A)Is this Schedule Non Recoverable? As there is a dirty read happening at w2(A)->r3(A)