2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/_db2/tcl
Andres Gomez Casanova 50b9d2b3ef
Create tcl
2019-01-07 11:57:07 -05:00

12 lines
170 B
Plaintext

--Commit changes
COMMIT
--Create a savepoint
SAVEPOINT sp1 ON ROLLBACK RETAIN CURSORS
--Undo changes until savepoint
ROLLBACK TO SAVEPOINT sp1
--Undo changes
ROLLBACK