in Databases edited by
1,218 views
0 votes
0 votes

In the context of concurrency control, a given pair of operations in a schedule is called conflict schedule if

  1. At least one of the operations is write operation
  2. Both the operations are performed on the same data item
  3. Both the operations are performed by different transactions
  4. Both the operations are performed on different data items

Choose the correct answer from the options given below:

  1. $(a)$ and $(b)$ only
  2. $(a)$, $(b)$ and $(c)$ only
  3. $(a)$, $(c)$ and $(d)$ only
  4. $(c)$ and $(d)$ only
in Databases edited by
1.2k views

1 Answer

1 vote
1 vote

Conflicting operations: Two operations are said to be conflicting if all conditions satisfy: 

  • They belong to different transactions
  • They operate on the same data item
  • At Least one of them is a write operation

Only (a),(b),(c) statements are correct. Option (B) is correct answer.

Answer:

Related questions