InterviewSolution
Saved Bookmarks
| 1. |
What is generally done if an error occurs during the transaction?(a) delete(b) rollback(c) commit(d) update |
|
Answer» Correct answer is (b) rollback Easy explanation: Whenever an error occurs during a transaction, it is generally taken to the state prior to the beginning of transaction execution. This is known as rollback. It is a set of undo operations. |
|