edited by
379 views
0 votes
0 votes

1. Only if there is a commit on any schedule there is chances of cascading?
 

for example      R1(d) W2(d) commit2

This is cascading because if commit of T2 fails...T1 has read the value so cascading schedule

incase             R1(d) W2(d) rollbaack2

now this is cascading or cascadeless schedule?

edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
Deepalitrapti asked Aug 17, 2018
1,195 views
2 votes
2 votes
2 answers
2
1 votes
1 votes
3 answers
4
DebRC asked Nov 2, 2021
703 views
Suppose,T1: W(X), T2: R(X), T1: W(X), T2: Commit, T1: AbortHere we can see T2 is getting committed before T1 aborts, so it is clearly an Irrecoverable schedule but is it ...