My Oracle Support Banner

Use of SAVEPOINT statement causes error ORA-03001: unimplemented feature (Doc ID 2866611.1)

Last updated on JULY 20, 2024

Applies to:

Oracle Database - Enterprise Edition - Version 19.3.0.0.0 and later
Information in this document applies to any platform.

Symptoms

Using the SAVEPOINT statement in SQL causes the following error:

  ORA-03001: unimplemented feature

TEST CASE:
CREATE TABLE Foo (Bar NUMBER);

DECLARE
  n_Bar NUMBER;
BEGIN
  FOR n_BAR IN 1..2 LOOP
  INSERT INTO Foo VALUES (n_Bar);
  SAVEPOINT;
  END LOOP;
  ROLLBACK;
END;
/

DROP TABLE Foo;

RESULTS:
Table FOO created.

Error starting at line: 16 in command -
DECLARE
  n_Bar NUMBER;
BEGIN
  FOR n_BAR IN 1..2 LOOP
  INSERT INTO Foo VALUES (n_Bar);
  SAVEPOINT;
  END LOOP;
  ROLLBACK;
END;
Error report -
ORA-03001: unimplemented feature
ORA-06512: at line 6
03001. 00000 - "unimplemented feature"
*Cause: This feature is not implemented.
*Action: None.

Cause

To view full details, sign in with your My Oracle Support account.

Don't have a My Oracle Support account? Click to get started!


In this Document
Symptoms
Cause
Solution


My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.