What happens when a database transaction triggers a 'COMMIT' statement?
A. The database structure is dropped.
B. All changes made by the transaction are made permanent on disk storage.
C. The transaction pauses temporarily.
D. The transaction is aborted and wiped.
Answer: Option B
Solution (By JKExamLibrary)
Executing a COMMIT statement instructs the database engine to save all data updates performed during the transaction permanently into physical storage.
Explanation:
ACID stands for Atomicity, Consistency, Isolation, and Durability, which are the key properties that guarantee reliable processing of database transactions.
No comments yet. Be the first to start the discussion!