0 votes
in PL/SQL by
Can A Commit Statement Be Executed As Part Of A Trigger?

1 Answer

0 votes
by

No, A COMMIT statement cannot be executed as a part of a trigger because it is a Transaction Control statement, which cannot be executed within a trigger body. Triggers fire within transactions and cannot include any Transaction Control statement within its code.

...