C# (Sharp) Programming Language Question:

Download Job Interview Questions and Answers PDF

Explain ACID rule of thumb for transactions.

C# (Sharp) Programming Language Interview Question
C# (Sharp) Programming Language Interview Question

Answer:

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 hasnot), 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).

Download C# (Sharp) Programming Language Interview Questions And Answers PDF

Previous QuestionNext Question
What is the equivalent to regsvr32 and regsvr32 /u a file in .NET development?Where is the output of TextWriterTraceListener redirected?