Atomicity is the requirement that a transaction must be fully processed or not processed at all, removing the possibility of a partially completed transaction.
State the purpose of the second principle of ACID
Consistency is the requirement that a transaction cannot compromise referentialintegrity.
State the purpose of the third principle of ACID
Isolation is the requirement that when a record is being retrieved and a user edits or updates it, it is locked from other users. Once the transaction is complete, others can then access the record
State the purpose of the fourth principle of ACID
Durability is the requirement that once a transaction has been performed, the database change needs to be written immediately to secondary storage so that it will not be lost during power failures.
What is commitment ordering?
is a concurrent control technique that ensures transactions are executed in order based on their dependencies