ACID

A transaction should have the following properties:

  • Atomicity: Either executed fully or none.
  • Consistency: If database was consistent before transaction, it should remain consistent afterwards.
  • Isolation: Logical isolation - two transactions shouldn't affect each other
  • Durability: If a transaction is executed it should persist in the system irrespective of hardware/software failures.
AID=>CAID => C

Backlinks