Hello,
I read about ACID property but did not understand it. Can someone tell me about it?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manish KumarPosted Jan 8, 2014, 3:55 AM
A-Atomicity:- Each transaction is said to be atomic if when one part of the transaction fails, the entire transaction fails.
C-Consistency:- The consistency property ensures that the database remains in a consistent state before the start of the transaction and after the transaction is over (whether successful or not).
I-Issolation:-Isolation refers to the requirement that other operations cannot access or see the data in an intermediate state during a transaction.
D-Durability:-Durability refers to the guarantee that once the user has been notified of success, the transaction will persist, and not be undone.
Mukesh Kumar TiwariPosted Dec 30, 2013, 1:20 AM
Atomicity is an all-or-none proposition.
Consistency guarantees that a transaction never leaves your database in a half-finished state.
Isolation keeps transactions separated from each other until they're finished.
Durability guarantees that the database will keep track of pending changes in such a way that the server can recover from an abnormal termination.
Satyapriya NayakPosted Dec 25, 2013, 1:37 AM
http://www.lightwolftech.com/index.php?page=backgrounders