InterviewSolution
Saved Bookmarks
| 1. |
What Is A Transaction In Oracle ? |
|
Answer» A transaction is a Logical unit of WORK that compromises one or more SQL Statements executed by a single USER. According to ANSI, a transaction begins with FIRST executable statement and ends when it is explicitly COMMITTED or rolled back. A transaction is a Logical unit of work that compromises one or more SQL Statements executed by a single User. According to ANSI, a transaction begins with first executable statement and ends when it is explicitly committed or rolled back. |
|