What is a transaction and what are ACID properties?
Answer Posted / ravina
A transaction is a sequence of sql Operations(commands),
work as single atomic unit of work. To be qualify
as "Transaction" , this sequence of operations must satisfy
4 properties , which is knwon as ACID test.
A(Atomicity):-The sequence of operations must be atomic,
either all or no operations are performed.
C(Consistency):- When completed, the sequence of operations
must leave data in consistent mode. All the defined
relations/constraints must me Maintained.
I(Isolation): A Transaction must be isolated from all other
transactions. A transaction sees the data defore the
operations are performed , or after all the operations has
performed, it can't see the data in between.
D(Durability): All oprtaions must be permanently placed on
the system. Even in the event of system failure , all the
operations must be exhibit.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Once setting replication, is it potential to own a publisher as sixty four bit sql server and distributor or subscribers as a thirty two bit sql server?
Explain primary key, foreign key and unique key?
What is the use of set nocount on/off statement?
Explain what are page splits? : SQL Server Architecture
What is sql server used for?
Which is the best place or learning center for MS SQL?????In Bangladesh?????
What are different types of join?
can we have a nested transaction? : Sql server database administration
Define right outer join in sql server joins?
What do you understand by replication in sql server? Mention the different types of replication in sql server.
Explain how many types of relationship?
Can we perform backup restore operation on tempdb? : sql server database administration
What are the instances when triggers are appropriate?
What is multi-statement table-value user-defined function?
What is db stored procedure?