...

/

ACID Transactions

ACID Transactions

Let's see the ACID properties.

ACID is a set of properties of traditional database transactions that provide guarantees around the expected behavior of transactions during errors, power failures, etc. More specifically, these properties are the following.

Atomicity (A)

Atomicity guarantees that a transaction that comprises multiple operations is treated as a single unit. This means that either all operations of the transaction are executed ...