Acid Testing

I have come across the Term "Atomicity, Consistency, Isolation, Durability" acronym as ACID , have any one have more knowledge about this Testing strategy... Help would be Appreciated

Questions by Joykid_007

Showing Answers 1 - 6 of 6 Answers

devanshu20

  • Mar 17th, 2008
 

Basically in IT World ACID is acronym of Atomic, Consistent, Isolation, Durable. Which is specifically define a Properties of a Good Database Transaction.So I think ACID Testing is either a Database Testing. The white box and Black box Testing of Database Queries/Processes.

  Was this answer useful?  Yes

ACID (atomicity, consistency, isolation, durability) refers to a set of properties that guarantee that database transactions are processed reliably.

Atomicity states that database modifications must follow an “all or nothing” rule.

Consistency states that only valid data will be comitted to the database.

Isolation refers to the requirement that other operations cannot access or see the data in an intermediate state during a transaction.

Durability refers to the guarantee that once the user has been notified of success, the transaction will persist, and not be undone.

(source: wikipedia)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions