in Databases reopened by
4,713 views
11 votes
11 votes

ACID properties of a transactions are

  1. Atomicity, consistency, isolation, database
  2. Atomicity, consistency, isolation, durability
  3. Atomicity, consistency, integrity, durability
  4. Atomicity, consistency, integrity, database
in Databases reopened by
by
4.7k views

3 Answers

11 votes
11 votes
Best answer
Definitely its B...

ACID properties:

A - Atomicity

C- consistency

I - Isolation

D -Durability
selected by
3 votes
3 votes
To maintain integrity of the database , the transactions follow ACID properties:

A - Atomicity, the Recovery management component of DBMS software is responsible for atomicity.

C - Consistency, the Database Administrator or Database Creator takes care of consistency.

I - Isolation, taken care by the concurrency control component of DBMS software.

D - Durability, again the Recovery management component of DBMS software responsible for this.

So, the correct answer is B
0 votes
0 votes

ACID stands for Atomicity, Consistency, Isolation and Durability.

Atomicity

It means that either the record/document updates completely or does not update with respect to the operation.

Either everything occurs or nothing occurs.

Consistency

It implies that a transaction either creates a new and valid state of data, or, if any failure occurs, returns all data to its state before the transaction was started.

If successful then valid data else revert back to original data.

Isolation

Two or more simultaneous database queries should run independent of the other transactions.

Durability

Data once committed should be saved in memory so that even in case of system failure, data is not affected.