Home » RDBMS Server » Server Utilities » ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified (11g, 11.2.0.1, windows server 2008)
ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified [message #605055] |
Tue, 07 January 2014 04:07 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ishika_20
Messages: 339 Registered: December 2006 Location: delhi
|
Senior Member |
|
|
Dear All,
Below is the script to get database backup in expdp.
Export: Release 11.2.0.3.0 - Production on Sun Jan 5 13:13:44 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
;;;
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
FLASHBACK automatically enabled to preserve database integrity.
Starting "SYSTEM"."SYS_EXPORT_FULL_06": SYSTEM/******** dumpfile=expdp_uatoltp_05012014_iUat.dmp logfile=expdp_uatoltp_05012014_iUat.log directory=dp_dir full=y
Backup completed successfully without any error...
There are 6 partition tables which are creating problem during the import.
import script is as below -
;;;
Import: Release 11.2.0.1.0 - Production on Mon Jan 6 23:31:39 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
;;;
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_SCHEMA_05" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_SCHEMA_05": system/******** dumpfile=expdp_uatoltp_05012014_iUat.dmp logfile=impdp_expdp_uatoltp_05012014_iUat.log directory=DP_DIR SCHEMAS=INS,REINS,CNFG,RILOG,RNL,CONFSYS,BATJOB,DMS,DW,GEN,ACCEXT,RATEENG,MULTCURR,MS,TAGICRM exclude=statistics
Processing object type DATABASE_EXPORT/SCHEMA/USER
Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE
Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA
Processing object type DATABASE_EXPORT/SCHEMA/DB_LINK
Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/SEQUENCE
Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/SYNONYM
Processing object type DATABASE_EXPORT/SCHEMA/TYPE/INC_TYPE
Processing object type DATABASE_EXPORT/SCHEMA/TYPE/TYPE_SPEC
Processing object type DATABASE_EXPORT/SCHEMA/PROCACT_SCHEMA
Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
ORA-39083: Object type TABLE:"INS"."UW_VEHICLE_DTLS" failed to create with error:
ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified
Failing sql is:
CREATE TABLE "INS"."UW_VEHICLE_DTLS" ("NUM_REFER_NO" NUMBER(15,0), "DAT_REFERENCE_DATE" DATE, "TXT_REGISTRATION_NO" VARCHAR2(20 BYTE), "TXT_ENGINE_NO" VARCHAR2(30 BYTE), "TXT_CHASIS_NO" VARCHAR2(30 BYTE), "TXT_COVER_TYPE" VARCHAR2(50 BYTE), "TXT_VEHICLECLASS" VARCHAR2(100 BYTE), "TXT_VEHICLESUBCLASS" VARCHAR2(100 BYTE), "NUM_POLICY_NUMBER" NUM
When I append parameter transform=segment_attributes:n in import script, data are importing without any error.
;;;
Import: Release 11.2.0.1.0 - Production on Tue Jan 7 14:26:26 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
;;;
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_SCHEMA_05" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_SCHEMA_05": system/******** dumpfile=expdp_uatoltp_05012014_iUat.dmp logfile=impdp_expdp_uatoltp_05012014_iUat.log directory=DP_DIR SCHEMAS=INS,REINS,CNFG,RILOG,RNL,CONFSYS,BATJOB,DMS,DW,GEN,ACCEXT,RATEENG,MULTCURR,MS,TAGICRM exclude=statistics transform=segment_attributes:n
Processing object type DATABASE_EXPORT/SCHEMA/USER
Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT
When i check the details of those partition tables, its allocated tablespaces are missing.
SQL> select owner, table_name, tablespace_name from dba_tables where table_name='GENMST_LO
CATION';
OWNER TABLE_NAME TABLESPACE_NAME
------------------------------ ------------------------------ ----------------------------
--
INS GENMST_LOCATION
Kindly assist me how can i make this process smooth?
Regards,
Ishika
|
|
|
|
|
|
Re: ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified [message #605142 is a reply to message #605082] |
Tue, 07 January 2014 10:03 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ishika_20
Messages: 339 Registered: December 2006 Location: delhi
|
Senior Member |
|
|
Dear Michel,
I tried as you suggested but getting the same error. Please have a look and guide me.
Below is the export script -
;;;
Export: Release 11.2.0.3.0 - Production on Tue Jan 7 16:48:46 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
;;;
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
FLASHBACK automatically enabled to preserve database integrity.
Starting "SYSTEM"."SYS_EXPORT_FULL_07": system/******** dumpfile=expdp_uatoltp_07-01-2014.dmp logfile=expdp_uatoltp_07-01-2014.log directory=dp_dir version=11.2.0.1.0 full=y
Estimate in progress using BLOCKS method...
Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 20.38 GB
Below is the import script and error -
;;;
Import: Release 11.2.0.1.0 - Production on Tue Jan 7 21:11:44 2014
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
;;;
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_SCHEMA_05" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_SCHEMA_05": system/******** dumpfile=expdp_uatoltp_07-01-2014.dmp logfile=impdp_expdp_uatoltp_07-01-2014.log directory=DP_DIR version=11.2.0.1 SCHEMAS=INS,REINS,CNFG,RILOG,RNL,CONFSYS,BATJOB,DMS,DW,GEN,ACCEXT,RATEENG,MULTCURR,MS,TAGICRM exclude=statistics
Processing object type DATABASE_EXPORT/SCHEMA/USER
Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE
Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA
Processing object type DATABASE_EXPORT/SCHEMA/DB_LINK
Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/SEQUENCE
Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/SYNONYM
Processing object type DATABASE_EXPORT/SCHEMA/TYPE/INC_TYPE
Processing object type DATABASE_EXPORT/SCHEMA/TYPE/TYPE_SPEC
Processing object type DATABASE_EXPORT/SCHEMA/PROCACT_SCHEMA
Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
ORA-39083: Object type TABLE:"INS"."UW_VEHICLE_DTLS" failed to create with error:
ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified
Failing sql is:
CREATE TABLE "INS"."UW_VEHICLE_DTLS" ("NUM_REFER_NO" NUMBER(15,0), "DAT_REFERENCE_DATE" DATE, "TXT_REGISTRATION_NO" VARCHAR2(20 BYTE), "TXT_ENGINE_NO" VARCHAR2(30 BYTE), "TXT_CHASIS_NO" VARCHAR2(30 BYTE), "TXT_COVER_TYPE" VARCHAR2(50 BYTE), "TXT_VEHICLECLASS" VARCHAR2(100 BYTE), "TXT_VEHICLESUBCLASS" VARCHAR2(100 BYTE), "NUM_POLICY_NUMBER" NUM
ORA-39083: Object type TABLE:"INS"."RISK_HEADERS" failed to create with error:
ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified
Failing sql is:
CREATE TABLE "INS"."RISK_HEADERS" ("REFERENCE_NUM" NUMBER(15,0) CONSTRAINT "SYS_C00191464" NOT NULL ENABLE NOVALIDATE, "REFERENCE_DATE" DATE CONSTRAINT "SYS_C00191465" NOT NULL ENABLE NOVALIDATE, "PRODUCT_INDEX" VARCHAR2(10 BYTE), "MODULE_INDEX" VARCHAR2(10 BYTE), "LOCATION_CODE" VARCHAR2(50 BYTE), "POLICY_RISK_SERIAL" NUMBER(8,0) CONSTRAINT "SYS
ORA-39083: Object type TABLE:"INS"."RISK_DETAILS" failed to create wit
|
|
|
|
|
|
Goto Forum:
Current Time: Thu Feb 06 22:03:57 CST 2025
|