ACID

Stands for

  • Atomicity
  • Consistency
    • Consistent in state, the state of the database at anytime needs to be valid
  • ACID (Isolation)
    • A transaction should not be affected by other concurrently running transaction
  • Durability.
    • Once a Database transaction is commited. We should not lose it state, it must persist in the event of a system failure

Are standard for Database/SQL database