Thursday, September 4, 2008

ACID

Refers to the basic properties of a database transaction.

Atomicity

- the entire sequence of actions must be either completed or aborted. the transaction cannot be partially successful.

Consistency

- the transaction takes the resources from one consistent state to another.

Isolation

- a transaction's effect is not visible to other transactions until the transaction is committed.

Durability

- changes made by the committed transaction are permanent and must survive system failure.

No comments: