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

Why are dynamic link library used over static one?

0 Answers   C DAC,


Is predicate a functional interface?

0 Answers  


Can we override interface methods in c#?

0 Answers  


What are partial classes and use of partial classes?

0 Answers   QuestPond,


An Array is a Ref Type? what about the array elements which are value type(int,Float...etc)?

6 Answers  






What is default boolean value in c#?

0 Answers  


Why we use anonymous methods in c#?

0 Answers  


What are the Configuration files in .net?

0 Answers  


What is the c# equivalent of c++ catch (...), Which was a catch-all statement for any possible exception?

0 Answers  


Are c# generics the same as c++ templates?

0 Answers  


WHICH IS THE BEST BOOK FOR A BEGINNER TO LEARN AP.NET 3.5, C#.NET & ALL THE FEATURES OF VISUAL STUDIO2008? WHAT ARE THE CERTIFICATIONS IN THIS FIELD? WHICH IS BEST BOOK FOR CLAERING CERTIFICATION EXAM? PLZ HELP ME YAAR

1 Answers  


What is the difference between paramaterized constructor and copy constructor?

0 Answers   HCL,


Categories