857 views

2 Answers

Best answer
3 votes
3 votes
Answer would be D

1- It is recoverable for sure.. Because nowhere any transaction has made write read conflict to be checked.  Property says you are not allowed to commit before transaction t which has made the modifications on same data which you have read after modification.

2- it is cascade less because property says you are not  allowed to read on same data  which is modified by  transaction t until t commits..  Here also no write read conflicts has been made therefore it is cascade less.
selected by
2 votes
2 votes
In these non serial schedule, there is no Dirty Read (Write -Read Conflict) so it is recoverable and Cascade less Schedule.

Related questions

1 votes
1 votes
1 answer
1
budhu asked Jan 29, 2018
1,522 views
The given schedule:R1 (A) R2 (B) W2 (B) W1(A) W2 (A) Commit2 R1 (C)is revoreable, cascadeless or strict?
1 votes
1 votes
2 answers
2
DebRC asked Aug 16, 2022
2,042 views
Is only conflict serializable schedules are recoverable?Or both view as well as conflict serializable schedules are recoverable?I have been seeing different answers in di...