Google News
logo
PL/SQL - Interview Questions
What do you know about the commands COMMIT, ROLLBACK, and SAVEPOINT?
COMMIT : The COMMIT command saves changes to a database permanently during the current transaction.
 
ROLLBACK : The ROLLBACK command is used at the end of a transaction to undo any modifications made since the start of the transaction.
 
SAVEPOINT : During transaction processing, the SAVEPOINT command saves the current point with a unique name.
Advertisement