Welcome to jBasket Interviews, where you can ask questions and receive answers from other members about job interviews and job seeking tips.

Explain ACID rule of thumb for transactions

0 votes
What is ACID in database transaction ? Explain.
asked 1 year ago by tarantula (490 points)

1 Answer

0 votes
ACID stands for the following principles:

A:Atomic: Transaction must be Atomic (it is one unit of work and does not dependent on previous and following transactions)

C:Consistent: data is either committed or roll back no in-between case where something has been updated and something has not.

I:Isolated: no transaction sees the intermediate results of the current transaction

D:Durable: the values persist if the data had been committed even if the system crashes right after.
answered 1 year ago by anonymous

Related questions