edited by
1,347 views
4 votes
4 votes

Consider the following schedule $S1$.

$S_{1}: R_{1}(C) R_{2}(C) W_{1}(A) W_{2}(A) W_{1}(C) R_{1}(B) R_{2}(B) W_{1}(B) W_{1}(D) W_{2}(B) W_{2}(D) R_{1}(F) W_{3}(E) R_{3}(F)$

Let $'X'$ be the number of 'blind-write' operations in the given schedule and $'z'$ be the number of conflict equivalent serial schedules to $S_{1}$. The value of $X*Z$ is_________.

edited by

1 Answer

Best answer
9 votes
9 votes

The Schedule is not conflict serializable. This can be checked by the precedence graph, it contains a cycle. So the number of conflict equivalent serial schedule is $0$. It has 5 blind writes that are the writes without any prior read of that data item.

So the value of $Z*X= 0*5=0$

edited by

Related questions

1 votes
1 votes
1 answer
1
Mojo-Jojo asked Jan 13, 2016
1,494 views
My doubt is, T3 and T4 have blind writes, can these be conflict serializable?
5 votes
5 votes
1 answer
3
iarnav asked Dec 10, 2017
13,774 views
Please explain the concept of Blind Write in a simplified manner w/ a small example!