Database Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 916 Page Views: 

What is ACID property?



Posted By: Avi Date: 1 October 2010 11:46:07 AM
 Answer:

ACID is the acronym for Atomicity,Consistency,Isolation and Durability. Whenever a transaction is executed in SQL server certain characteristics which are to be possessed by the transaction is maintained. ACID are those charactersistics. Atomicity:- By atomicity it is meant that group of T-sql statements will act in a batch. Consistency:- The transaction should act open consistent data and after operation should leave data in consistent form. Isolation:- By isolation it is meant that the running transaction should feel that it is the only one being performed. That is that if there are several transaction being executed then transaction isolation will ensure that each transaction will think that it has exclusive use of the system. Durability:- By transaction Durabity it is meant that any successful completion ofthe transaction should leave it in permanent state,i.e. ther should be no loss of information. Such as committed transactions should persist,even if there is any crash or power faliure.Basically it is the ability of DBMS to recover committed data even after power faliures or system crash.


Posted By: avibtech


Date: 1 October 2010 11:46:07 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image DHZp6C
Related Questions
Database : Differentiate between SQL and PL/SQL?

Differentiate between SQL and PL/SQL?

1. SQL is simpleified statement for Selecting and Manipulating the data. Whereas PL/SQL is a Procedu....
Category: Database Date: 10/1/2010 12:24:08 PM
Database : What is ACID property?

What is ACID property?

ACID is the acronym for Atomicity,Consistency,Isolation and Durability. Whenever a transaction is ex....
Category: Database Date: 10/1/2010 11:46:07 AM
Database : How are one-to- one,one to many and many to many relationships implemented while designing the table?

How are one-to- one,one to many and many to many relationships implemented while designing the table....

1. One to one relationship:- This is the relationship which is used very rarely and is implemented o....
Category: Database Date: 10/1/2010 11:39:07 AM
Database : What is meant by RDBMS?

What is meant by RDBMS?

RDBMS means Relational Database Management System.This system manages the data records and indices i....
Category: Database Date: 10/1/2010 11:14:20 AM
Database : What is the difference between OLTP & OLAP?

What is the difference between OLTP & OLAP?

OLTP:- 1. It is based on entity relational model. 2. It inherits the concept of normalization so the....
Category: Database Date: 10/1/2010 11:14:07 AM