Saved Bookmarks
| 1. |
In General, How Should The Boundaries Of A Transaction Be Defined? |
|
Answer» transaction ensures that one or more OPERATIONS EXECUTE as an ATOMIC unit of WORK. If one of the operations within a transaction fails, then all of them are rolled-back so that the application is returned to its prior state. The boundaries that define a group of operations DONE within a single transaction. transaction ensures that one or more operations execute as an atomic unit of work. If one of the operations within a transaction fails, then all of them are rolled-back so that the application is returned to its prior state. The boundaries that define a group of operations done within a single transaction. |
|