315 views
1 votes
1 votes

Find the number of concurrent schedule that are conflict serializable

1 Answer

1 votes
1 votes

Conflict serializable schedules may be T1 → T2 or T2  → T1

Basic points:-

1) In a transaction, all operations should be sequential i.e., W1(A) should be Before R1(B)

2) between R1(A) and W1(A) there should be no chance for R2(A) why because if you place it between them it should form loop.

 

i) T1 → T2 , For occurring T1 firstly, you have to use R1(A) as 1

  T1 T2
1 R1(A)  
2 W1(A)  
3    
4    
5 R1(B)  
6    
7    
8 W2(B)  
9    
10    
11   R2(B)
12   W2(B)

Now Fix R2(A) at 3 ====> There are 3 places for W2(A) which are {4,6,10} note that placing it at 6 or 7 leads to same schedule, so i didn't count it.

Now Fix R2(A) at 6 ====> There are 2 places for W2(A) which are {6,10}

Now Fix R2(A) at 9 ====> There are 1 place for W2(A) which is {10}

In all these schedules ,  T1 → T2 , is conflict serializable. ===> total schedules which are T1 → T2 , conflict serializable. = 3+2+1 = 6

 

ii) T2 → T1 , For occurring T2 firstly, you have to use R2(A) as 1

These is quite similar to previous one ====> do it your self

total schedules which are T2 → T1 , conflict serializable. = 3+2+1 = 6

∴ total schedules which are conflict serializable. = 6+6 = 12 

Related questions

0 votes
0 votes
2 answers
1
joshipratik232 asked Aug 16, 2022
472 views
Does Conservative 2PL ensures Recoverability ? If Yes then Does it ensures Cascadeless or Strict recoverable schedule ?
0 votes
0 votes
2 answers
4
Rackson asked Jan 7, 2019
636 views
Which of the following is used to get back all the transactions back after rollback?a)Rollbackb)Commitc)undo d)Redo