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 is a table called, if it has neither cluster nor non-cluster index? What is it used for?
What is difference between foreign key and unique key?
What is the command used to check locks in microsoft sql server?
Explain about extended stored procedure?
Is there any difference between the primary key and unique key?
How is SQL Azure different than SQL server?
What is normalization 1nf 2nf 3nf?
What are the requirements for sql server 2016?
How can I create a new template for import ? : sql server management studio
What is Lock table in SQL?
What to check if a User database is locked?
What is index, cluster index and nonclustered index?
What encryption security is available in sql azure?
What is an index in a database?
What are views used for?