ACID Properties
StevenSwiniarski474 total contributions
Published Jun 9, 2022
Contribute to Docs
ACID properties refer to properties a database transaction must follow in order to maintain consistency in a database. Those properties are as follows:
- Atomicity: The entire transaction must occur, or none of it does. There are no partial transactions.
- Consistency: The database must remain consistent before and after the transaction.
- Isolation: Transactions are independent of one another, and do not interfere with each other.
- Durability: A transaction, once completed, is permanent and persists even if a system failure occurs.
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.