InterviewSolution
Saved Bookmarks
| 1. |
What Does Commit Do ? |
|
Answer» COMMIT makes permanent changes resulting from all SQL statements in the TRANSACTION. The changes made by the SQL statements of a transaction become visible to other user sessions transactions that START only after transaction is COMMITTED. COMMIT makes permanent changes resulting from all SQL statements in the transaction. The changes made by the SQL statements of a transaction become visible to other user sessions transactions that start only after transaction is committed. |
|