In Relational Database Management Systems (RDBMS), what property ensures that all operations within a database transaction either complete successfully or roll back completely?
AAtomicity
BConsistency
CIsolation
DDurability
Explanation
Atomicity (the ‘A’ in ACID) guarantees an ‘all-or-nothing’ execution model. If any operation within a transaction fails, the entire transaction is aborted and rolled back to preserve database integrity.
Exam Relevance
- Topic: Database Management Systems
- Subtopic: ACID Properties & Transactions

No Comments