InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is included in the operational mechanism of the index locking protocol?(a) Every transaction must have at least one index(b) A transaction that performs a lookup must acquire a shared lock on all the index leaf nodes that it accesses(c) The rule of the two phase locking mechanism must be observed(d) All of the mentionedI have been asked this question by my school teacher while I was bunking the class.Origin of the question is Insert, Delete Operations and Predicate Reads in chapter Concurrency Control of RDBMS |
|
Answer» RIGHT choice is (d) All of the mentioned The best explanation: The operational MECHANISM of the index LOCKING PROTOCOL includes, every transaction must have at least one index. A transaction that performs lookup must acquire a shared lock on all the index leaf nodes that it ACCESSES. The rule of the two phase locking mechanism must be followed. |
|