8
This sets a savepoint that can be returned to in the current transaction. The "identifier" is the name given to the new savepoint. If the identifier has already been used then the original identifier is replaced. Example:
13
INSERT INTO t1 values (1);
15
INSERT INTO t1 values (2);
16
ROLLBACK TO SAVEPOINT A;
18
Will only roll back the second insert statement.
8
This sets a savepoint that can be returned to in the current transaction. The "identifier" is the name given to the new savepoint. If the identifier has already been used then the original identifier is replaced.