martes, 11 de julio de 2017

Oracle 12c expdp DBMS_AW_EXP: SYS.AW$: OLAP not enabled

Saludos, si al realizar export de base de datos con la utilidad EXPDP se les presenta el mensaje:
DBMS_AW_EXP: SYS.AW$EXPRESS: OLAP not enabled
DBMS_AW_EXP: SYS.AW$EXPRESS: OLAP not enabled
DBMS_AW_EXP: SYS.AW$AWMD: OLAP not enabled
DBMS_AW_EXP: SYS.AW$AWCREATE: OLAP not enabled
DBMS_AW_EXP: SYS.AW$AWCREATE10G: OLAP not enabled
DBMS_AW_EXP: SYS.AW$AWXML: OLAP not enabled
DBMS_AW_EXP: SYS.AW$AWREPORT: OLAP not enabled
Segun lo revisado en Oracle Doc ID 1921158.1

Causa
Error raised from DBMS_AW_EXP, which is an OLAP specific object not available on Standard Edition.

Solución
 Confirma si el siguiente query te arroja resultados:
SQL> select * from sys.exppkgact$ where package = 'DBMS_AW_EXP' and schema= 'SYS';
Si da resultados sigue los siguientes pasos:

1. Realiza un backup full.

2. Ejecutar:
SQL> delete from sys.exppkgact$ where package = 'DBMS_AW_EXP' and schema= 'SYS';
SQL> commit;
3. Realiza de nuevo el export y verifica que no salga el mensaje.

referencia:
12.1 Export Gives EXP-8 ORA-29280 EXP-85 ORA-06512 "SYS.UTL_FILE" "SYS.DBMS_AW_EXP" (Doc ID 1921158.1)
 

No hay comentarios:

Publicar un comentario