Problem Statement
Which option correctly expands the A C I D properties for relational transactions?
Explanation
Atomicity means all operations succeed as one unit, or none do. Consistency means every committed transaction preserves declared rules like constraints and data types.
Isolation keeps concurrent transactions from seeing each other’s intermediate states. Durability guarantees committed changes survive crashes through logs or replication.
Code Solution
SolutionRead Only
BEGIN; -- multiple writes COMMIT;
Practice Sets
This question appears in the following practice sets:
