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
What are 3 ways to get a count of the number of records in a table?
How we can compare two database data?
What is function of master database?
Write the SQL query to drop, truncate and delete table.
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
What is SQL Azure Firewall?
What is Federation Root Database?
What is repeatable read?
What are the differences between char and varchar in ms sql server?
Define tempdb database?
Does the order of columns in update statements matter?
What is a domain constraint give an example?
What is the purpose of grouping data in a report?
Do you know what are the differences between lost updates and uncommitted dependencies?
Explain syntax for dropping triggers?