InterviewSolution
Saved Bookmarks
| 1. |
To perform logical redo or undo, the database state on disk must be operation ___________ that is, it should not have partial effects of any operation.(a) Persistent(b) Resistant(c) Consistent(d) None of the mentionedThis question was addressed to me in unit test.My question comes from Lock Release and Undo Operations topic in chapter Recovery System of Database Management |
|
Answer» CORRECT CHOICE is (c) Consistent Easy explanation - Data STRUCTURES such as B+-trees WOULD not be in a consistent state, and neither logical redo nor logical undo operations can be PERFORMED on an inconsistent data structure. |
|