hi,,
i do't known about ACID properties in Database.Explain in detail.
Loading
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.
WilsonPosted May 3, 2011, 5:44 AM
ACID refers to Atomicity, consistence, Isolation and durability.
Atomicity: either all the operation of the transaction are properaly/refelected in the database or non are.
Consistency:transaction must take the database from one consistant state to another.
Isolation:Although multiple transaction may execute concurrently, each transaction must be unaware of other concurrently executing transaction.
Duarability: After a transaction completes successfully, the it has made to the database persist,even if there are system failures.