Basic Oracle Concepts and Programming Question:

How To Start a New Transaction in Oracle?

Tweet Share WhatsApp

Answer:

There is no SQL statement to explicitly start a new transaction. Oracle server implicitly starts a new transaction with the following two conditions:

* The first executable statement of a new user session will automatically start a new transaction.
* The first executable statement after a previous transaction has been ended will automatically start a new transaction.


Read All 430 Oracle Database Questions
Previous QuestionNext Question
What Is an Oracle Transaction?How To End the Current Transaction in Oracle?