Transaction control statements manage the changes made by DML statements, and group DML statements into transaction. More specifically:
-
make a transaction's changes permanent (COMMIT)
-
undo the changes in a transaction, either since the transaction started or since a savepoint (ROLLBACK)
-
set a point to which you can roll back (SAVEPOINT)
-
establish properties for a transaction (SET TRANSACTION)
|