What does ACID stand for in the context of RDBMS?

  • Accuracy, Control, Isolation, Durability
  • Association, Coordination, Integration, Distribution
  • Atomicity, Consistency, Isolation, Durability
  • Authentication, Configuration, Installation, Deployment
ACID stands for Atomicity, Consistency, Isolation, and Durability. It is a set of properties that ensure that database transactions are processed reliably. Atomicity ensures that either all the operations within a transaction are successfully completed or none of them are. Consistency ensures that the database remains in a consistent state before and after the transaction. Isolation ensures that the transactions are isolated from each other. Durability ensures that once a transaction is committed, its changes are permanently stored in the database even in the event of system failures.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *