Rolls back the current transaction to a savepoint.

Synopsis

  1. ROLLBACK [WORK | TRANSACTION] TO [SAVEPOINT] <savepoint_name>

Description

This command will roll back all commands that were run after the savepoint was established. The savepoint remains valid and can be rolled back to again later, if needed.

ROLLBACK TO SAVEPOINT implicitly destroys all savepoints that were established after the named savepoint.

Parameters

WORK

TRANSACTION

Optional key words. They have no effect.

savepoint_name

The name of a savepoint to roll back to.

Notes

Use RELEASE SAVEPOINT to destroy a savepoint without discarding the effects of commands run after it was established.

Specifying a savepoint name that has not been established is an error.

Cursors have somewhat non-transactional behavior with respect to savepoints. Any cursor that is opened inside a savepoint will be closed when the savepoint is rolled back. If a previously opened cursor is affected by a FETCH command inside a savepoint that is later rolled back, the cursor remains at the position that FETCH left it pointing to (that is, cursor motion caused by FETCH is not rolled back). Closing a cursor is not undone by rolling back, either. However, other side-effects caused by the cursor’s query (such as side-effects of volatile functions called by the query) are rolled back if they occur during a savepoint that is later rolled back. A cursor whose execution causes a transaction to end prematurely is put in a cannot-execute state, so while the transaction can be restored using ROLLBACK TO SAVEPOINT, the cursor can no longer be used.

Examples

To undo the effects of the commands run after my_savepoint was established:

  1. ROLLBACK TO SAVEPOINT my_savepoint;

Cursor positions are not affected by a savepoint rollback:

  1. BEGIN;
  2. DECLARE foo CURSOR FOR SELECT 1 UNION SELECT 2;
  3. SAVEPOINT foo;
  4. FETCH 1 FROM foo;
  5. column
  6. ----------
  7. 1
  8. ROLLBACK TO SAVEPOINT foo;
  9. FETCH 1 FROM foo;
  10. column
  11. ----------
  12. 2
  13. COMMIT;

Compatibility

The SQL standard specifies that the key word SAVEPOINT is mandatory, but Greenplum Database (and Oracle) allow it to be omitted. SQL allows only WORK, not TRANSACTION, as a noise word after ROLLBACK. Also, SQL has an optional clause AND [NO] CHAIN which is not currently supported by Greenplum Database. Otherwise, this command conforms to the SQL standard.

See Also

BEGIN, COMMIT, SAVEPOINT, RELEASE SAVEPOINT, ROLLBACK

Parent topic: SQL Commands