InterviewSolution
Saved Bookmarks
| 1. |
Which of the following does not lock the entire index(a) Phantom locking(b) Phantom problem(c) Index locking(d) Index problemI had been asked this question in an online quiz.I need to ask this question from Insert, Delete Operations and Predicate Reads in section Concurrency Control of RDBMS |
|
Answer» CORRECT answer is (c) Index locking Explanation: Index locking avoids locking the entire index. Any transaction that inserts a tuple into a relation MUST insert information into EVERY index MAINTAINED on the relation. |
|