RELEASE SAVEPOINT statement

Description

Releases a savepoint within the current transaction.

Syntax

RELEASE SAVEPOINT [ savepoint-name ]

Usage

The savepoint-name is an identifier specified on a SAVEPOINT statement within the current transaction. If savepoint-name is omitted, the most recent savepoint is released.

For a description of savepoints, see Chapter 8, “Using Procedures and Batches” in the Sybase IQ System Administration Guide. Releasing a savepoint does not perform any type of COMMIT; it simply removes the savepoint from the list of currently active savepoints.


Side effects

None.

Standards

Permissions

There must have been a corresponding SAVEPOINT within the current transaction.

See also

ROLLBACK TO SAVEPOINT statement

SAVEPOINT statement