0 votes
in PL/SQL by
Explain what are Transaction Control Statements? Can They Be Used Within The Pl/sql Block?

1 Answer

0 votes
by

Transaction Control statements are the COMMIT and REVOKE commands that control the logic of transactions within a database. These statements are valid within a PL/SQL block. The COMMIT command terminates the active transaction and makes the changes permanent to the database. The ROLLBACK command terminates the active transaction but cancels any changes that were made to the database.

Related questions

+2 votes
asked Mar 7, 2021 in PL/SQL by SakshiSharma
0 votes
asked Mar 15, 2021 in PL/SQL by Robindeniel
...