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
Which are ddl commands?
How will you go about resolving deadlocks?
what is a correlated sub-query? : Sql server database administration
How to count duplicated values in a column in ms sql server?
How to insert multiple rows with one insert statement in ms sql server?
How to create a stored procedure with a statement block in ms sql server?
What is index fragmentation in ms sql server?
Can foreign key be deleted?
Do you know how to store and query spatial data?
You want to be sure that queries in a database always execute at the maximum possible speed. To achieve this goal you have created various indexes on tables which other statement will keep the database in good condition?
What is server-level principal?
What is the main difference between ‘between’ and ‘in’ condition operators?
What are the differences between “row_number()”, “rank()” and “dense_rank()”?
How to start sql server browser service?
To automatically record the time on which the data was modified in a table, which data type should you choose for the column?