What is transaction ? Give me one example.
Answer Posted / ashique
Transaction is a database operation that satisfies following
a condition called ACID:
A (Atomicity) : Do all the operations successfully Or None.
C (Consistency) : The operation should not violate data
integrity concept.
I (Isolation) : When one person is manipulating the data,
others should wait (i.e synchronization).
D (Durability): Once transaction is over succesfully, the
changes should be permanent at any cost.
The best example of a simple transaction is bank fund
transfer from one account to another. Try to implement above
points using your common sense. Thank you :)
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What is extended stored procedures?
Which are new data types introduced in sql server 2008?
Do you know the isolation level that sql server support?
What is tablix?
Why olap is used?
what happens on checkpoint? : Sql server database administration
Why use update_statistics command in sql server?
what are different types of backups available in sql server? : Sql server database administration
What command do we use to rename a db, a table and a column?
Explain concepts of analysis services?
What is the difference between Stored Procedures and triggers?
How to add a new column to an existing table with "alter table ... Add" in ms sql server?
What does the not null constraint do?
What is a benefit of using an after insert trigger over using a before insert trigger?
What are key, name and value columns of an attribute? : sql server analysis services, ssas