Explain ACID rule of thumb for transactions.



Explain ACID rule of thumb for transactions...

Answer / madduri

Transaction must be Atomic (it is one unit of work and does
not dependent on previous and following transactions),
Consistent (data is either committed or roll back, no
?in-between? case where something has been updated and
something hasn?t), Isolated (no transaction sees the
intermediate results of the current transaction), Durable
(the values persist if the data had been committed even if
the system crashes right after).

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is a jagged array?

0 Answers  


What you mean by inner exception in c#?

0 Answers  


What is the use of properties window?

0 Answers  


Is everything an object c#?

0 Answers  


What is the Difference between class and abstract class?

2 Answers  






public void A() { int x; x = 8; x *= 4 + 8 / 2; } Given the above code, what is the value of "x"?

8 Answers  


What is JIT (just in time)? how it works?

0 Answers  


How to implement a singleton design pattern in c#?

0 Answers  


is it possible to access a remote web service Without UDDI?

0 Answers   TCS,


Can var be null c#?

0 Answers  


What does immutable mean in c#?

0 Answers  


What does namespace mean?

0 Answers  


Categories