ERROR: "ORA-00439: feature not enabled: In-Memory Column Store" Or "ORA-00922: missing or invalid option" in DBSetup or Datapump Utilities
(Doc ID 2629388.1)
Last updated on FEBRUARY 17, 2024
Applies to:
Primavera P6 Enterprise Project Portfolio Management - Version 19.12 to 19.12.1.0 [Release 19.12]Information in this document applies to any platform.
Symptoms
When attempting to upgrade P6 EPPM to release 19.12.x using the dbsetup utility, or when using datapump (expdp/impdp) to migrate a P6 database schema from an Oracle Enterprise Edition to an Oracle Standard Edition Database platform, one of the following errors occur.
ORA-00439: feature not enabled: In-Memory Column Store
ORA-06512: at line 7
SQL Query:
DECLARE
tbl_exists INTEGER;
BEGIN
SELECT COUNT(*) INTO tbl_exists FROM user_tables WHERE table_name =
UPPER('SAFETYDATE');
IF tbl_exists = 0
THEN
EXECUTE IMMEDIATE 'CREATE TABLE SAFETYDATE(
setting_name varchar2(30 CHAR) NOT NULL,
setting_value DATE NULL
,CONSTRAINT pk_setting_name PRIMARY KEY (setting_name) )
TABLESPACE PMDB_DAT1
STORAGE (INITIAL 1M NEXT 1M MAXEXTENTS UNLIMITED PCTINCREASE 0)
INMEMORY
';
END IF;
END;
--------
(ORA-00922: missing or invalid option
ORA-06512: at line 7
)
SQL Query:
DECLARE
tbl_exists INTEGER;
BEGIN
SELECT COUNT(*) INTO tbl_exists FROM user_tables WHERE table_name =
UPPER('SAFETYDATE');
IF tbl_exists = 0
THEN
EXECUTE IMMEDIATE 'CREATE TABLE SAFETYDATE(
setting_name varchar2(30 CHAR) NOT NULL,
setting_value DATE NULL
,CONSTRAINT pk_setting_name PRIMARY KEY (setting_name) )
TABLESPACE PMDB_DAT1
STORAGE (INITIAL 1M NEXT 1M MAXEXTENTS UNLIMITED PCTINCREASE 0)
INMEMORY
';
END IF;
END;
The issue can be reproduced at will with the following steps:
- Run dbsetup.bat to upgrade the P6 schema to P6 EPPM 19.12.x.
- Provide the database connection details.
- Step through the process.
- Error occurs during the Perform core upgrade step.
--------
- Use the Oracle Database expdp utility to export a P6 schema from a database hosted in an Oracle Enterprise Edition.
- Use the impdp utility to import the P6 schema to a database hosted on Oracle Standard Edition.
- Import fails; view the error in the log file.
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! |