InterviewSolution
Saved Bookmarks
| 1. |
_______ means that data used during the execution of a transaction cannot be used by a second transaction until the first one is completed.(a) Serializability(b) Atomicity(c) Isolation(d) Time stampingI got this question by my school teacher while I was bunking the class.My question is taken from Multiversion Schemes topic in section Concurrency Control of Database Management |
|
Answer» CORRECT choice is (c) ISOLATION Explanation: Isolation means that data USED during the execution of a transaction can’t be used by a SECOND transaction until the first one is completed. |
|