Answer Posted / js_m
Transaction must be
A - Atomic (it is one unit of work and does not dependent on
previous and following transactions),
C - Consistent (data is either committed or roll back, no
"in-between" case where something has been updated and
something hasn?t),
I - Isolated (no transaction sees the intermediate results
of the current transaction),
D - 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 View All Answers
What is a private class in c#?
What is difference between iqueryable and ienumerable in c#?
the c# keyword .int. Maps to which .net type?
What is the difference between delegates and superdelegates?
How many bits is int32?
What is use of a HashTable in .NET?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
What is the namespcae generally given to the webpage of the .NET Framework ?
What is platform independence"?
What is the root element of an xml file?
Why do we need singleton class in c#?
What is the difference between finalize() and dispose()?
From a versioning perspective, what are the drawbacks of extending an interface as opposed to extending a class?
Why use “using” in c#?
Can arraylist hold primitive types?