Skip to content
Discussion options

You must be logged in to vote

ACID properties ensure that database transactions are processed reliably.

A – Atomicity

A transaction is completed entirely or not at all.

Example:

Transferring money between bank accounts should not withdraw money without depositing it.

C – Consistency

The database moves from one valid state to another while respecting all rules and constraints.

I – Isolation

Multiple transactions running at the same time should not interfere with one another.

D – Durability

Once a transaction is committed, it remains saved even if the server crashes.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by janedoe2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants