retagged by
705 views
2 votes
2 votes
schedule
R(A)    
  R(B)  
R(B)    
W(A)    
COMMIT    
    R(C)
    R(B)
    W(C)
  W(B)  
  R(A)  
  R(C)  
  COMMIT  
    COMMIT

The above scedule is -:

a)conflict serializable

b)recoverable

c)cascadeless

d)all of these

according to me a)&b)

answer given -:a)

retagged by

1 Answer

Best answer
11 votes
11 votes

it is Conflict Serial as T1 ---> T3 ---> T2 or T3 ---> T1 ---> T2 .
But Schedule is Irrecoverable bcoz of Dirty Read :  W3(C) and R2(C) and T2 commit before T3.

selected by

Related questions

2 votes
2 votes
2 answers
2
2 votes
2 votes
0 answers
3
shivangi5 asked Oct 16, 2017
402 views
0 votes
0 votes
1 answer
4
Kaustubh _15 asked Dec 15, 2017
491 views
The above question has a blind write so it should be View Serializable. But can it be Conflict Serializable?