InterviewSolution
Saved Bookmarks
| 1. |
What Is Transaction ? |
|
Answer» An atomic unit of work that MODIFIES data. A transaction encloses ONE or more program statements, all of which either COMPLETE or roll BACK. Transactions enable multiple users to ACCESS the same data concurrently. An atomic unit of work that modifies data. A transaction encloses one or more program statements, all of which either complete or roll back. Transactions enable multiple users to access the same data concurrently. |
|