mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-19 03:25:44 +00:00
12 lines
170 B
Plaintext
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
|