mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +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
|