ACIDrollbacks
ACID stands for Atomicity, Consistency, Isolation, and Durability. ACID rollbacks are a fundamental concept in database management and transaction processing, ensuring data integrity and reliability. Atomicity means that a transaction is treated as a single, indivisible unit of work. Either all operations within the transaction are completed successfully, or none of them are. If any part of the transaction fails, the entire transaction is undone, returning the database to its state before the transaction began.
Consistency ensures that a transaction brings the database from one valid state to another. It upholds all
Durability ensures that once a transaction is successfully committed, its changes are permanent and will survive