What is a transaction and what are ACID properties?

Answer Posted / archana

A transaction is an atomic unit of work that must be
completed in its entirety.The transaction succeeds if it
committed and fails if it is aborted.Transactions have four
essential properties:atomicity,consistency,isolation, and
durability(known as the ACID properties).

Atomicity:The work cannot be broken into smaller
parts.Although a transaction might contain many SQL
statements,it must be run as all-or-nothing
proposition,which means that,if a transaction is only
partially complete when an error occurs,the work revertss
to its state prior to the start of the transaction.

Consistency:A transaction must operate on a consistent view
of the data and also leave the data in a consistency
state.Any work in progress must not be visible to other
transactions until the transaction has been committed.

Isolation:A transaction should appear to be running by
itself,the effects of other ongoing transactions must be
invisible to this transaction,and the effects of this
transaction must be invisible to other ongoing transaction.

Durability:When the transaction is committed,it must be
persisted so it is not lost in the event of a power
failure.Only committed transaction are recovered during
power-up and crash recovery;uncommitted work is roll back.

Is This Answer Correct ?    72 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are 3 ways to get a count of the number of records in a table?

829


How we can compare two database data?

687


What is function of master database?

108


Write the SQL query to drop, truncate and delete table.

732


in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration

744


What is SQL Azure Firewall?

128


What is Federation Root Database?

100


What is repeatable read?

697


What are the differences between char and varchar in ms sql server?

758


Define tempdb database?

755


Does the order of columns in update statements matter?

672


What is a domain constraint give an example?

784


What is the purpose of grouping data in a report?

727


Do you know what are the differences between lost updates and uncommitted dependencies?

742


Explain syntax for dropping triggers?

703