oracle impdp的skip_constraint_errors選項跳過唯一約束錯誤
以前遇到impdp匯入到已經存在的表有唯一索引,且要匯入的資料跟現在資料有唯一衝突.一般處理方法是先把唯一索引刪掉,匯入後再刪除重複資料再重建索引,或者把表匯入為另一個表名,然後再進行關聯匯入.oracle 11g開始impdp加了一個data_ooptions引數,引數目前的選項只有skip_constraint_errors,用於在匯入時忽略非延遲約束繼續執行.
以下測試:
oracle version :11.2.0.4
[oracle@ct6605 ~]$ ORACLE_SID=ct66
[oracle@ct6605 ~]$ sqlplus / as sysdba
#建測試表
SQL> create table scott.t_source as select * from dba_objects;
#建匯入匯出目錄
SQL> create or replace directory home_dump as '/home/oracle';
SQL> exit
#匯出測試資料
[oracle@ct6605 ~]$ expdp system dumpfile=home_dump:expdp_t_source.dmp tables=scott.t_source
Export: Release 11.2.0.4.0 - Production on Fri Mar 25 11:28:56 2016
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Password:
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_TABLE_01": system/******** dumpfile=home_dump:expdp_t_source.dmp tables=scott.t_source
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 10 MB
Processing object type TABLE_EXPORT/TABLE/TABLE
. . exported "SCOTT"."T_SOURCE" 8.395 MB 86527 rows
Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
/home/oracle/expdp_t_source.dmp
Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at Fri Mar 25 11:29:03 2016 elapsed 0 00:00:04
[oracle@ct6605 ~]$ sqlplus / as sysdba
#建目標表
SQL> create table scott.t_dest as select * from dba_objects where rownum<10;
SQL> update scott.t_dest set object_id=object_id+2000000;
SQL> insert into scott.t_dest select * from dba_objects where rownum<10;
SQL> commit;
#建唯一索引
SQL> create unique index idx_t_dest on scott.t_dest(object_id);
SQL> exit
#impdp不加skip_constraint_errors時報錯
[oracle@ct6605 ~]$ impdp system dumpfile=home_dump:expdp_t_source.dmp remap_table=scott.t_source:t_dest table_exists_action=append
Import: Release 11.2.0.4.0 - Production on Fri Mar 25 11:34:45 2016
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Password:
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** dumpfile=home_dump:expdp_t_source.dmp remap_table=scott.t_source:t_dest table_exists_action=append
Processing object type TABLE_EXPORT/TABLE/TABLE
Table "SCOTT"."T_DEST" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
ORA-31693: Table data object "SCOTT"."T_DEST" failed to load/unload and is being skipped due to error:
ORA-00001: unique constraint (SYS.IDX_T_DEST) violated
Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 1 error(s) at Fri Mar 25 11:34:51 2016 elapsed 0 00:00:04
#impdp加skip_constraint_errors,並且匯入日誌中顯示總共多少行,匯入了多少行,多少行因為什麼約束沒匯入
[oracle@ct6605 ~]$ impdp system dumpfile=home_dump:expdp_t_source.dmp remap_table=scott.t_source:t_dest table_exists_action=append data_options=skip_constraint_errors
Import: Release 11.2.0.4.0 - Production on Fri Mar 25 11:36:55 2016
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Password:
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** dumpfile=home_dump:expdp_t_source.dmp remap_table=scott.t_source:t_dest table_exists_action=append data_options=skip_constraint_errors
Processing object type TABLE_EXPORT/TABLE/TABLE
Table "SCOTT"."T_DEST" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. . imported "SCOTT"."T_DEST" 8.395 MB 86518 out of 86527 rows
9 row(s) were rejected with the following error:
ORA-00001: unique constraint (SYS.IDX_T_DEST) violated
Job "SYSTEM"."SYS_IMPORT_FULL_01" successfully completed at Fri Mar 25 11:37:05 2016 elapsed 0 00:00:07
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28539951/viewspace-2063909/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 主鍵約束、唯一約束和唯一索引索引
- 聊聊Oracle外來鍵約束(Foreign Key)的幾個操作選項Oracle
- MySQL 跳過同步錯誤MySql
- PostgreSQL唯一約束如何使用?SQL
- 10、Oracle中的約 束constraintOracleAI
- CRSF過期,錯誤跳轉(記錄)
- oracle 註釋和約束Oracle
- iOS 支付前登入要有跳過選項iOS
- oracle外來鍵約束的總結Oracle
- ORACLE 錯誤Oracle
- Mysql-基本練習(06-唯一約束、外來鍵約束、新增、刪除單列)MySql
- 【SQL】15 SQL 約束(Constraints)、NOT NULL 約束、UNIQUE 約束、PRIMARY KEY 約束、FOREIGN KEY 約束、CHECK 約束、DEFAULT約束SQLAINull
- Oracle如何管理帶約束的B樹索引Oracle索引
- mysql多源複製跳過錯誤處理方法MySql
- Oracle OCP(57):IMPDPOracle
- 事務插入和唯一性約束,後插入者是報錯還是阻塞?
- impdp匯入報ORA-00001 ORA-04088錯誤
- oracle資料庫的impdp,expdpOracle資料庫
- 資料遷移無法新增外來鍵約束,錯誤程式碼 1215
- 約束
- 阻止a標籤的跳轉,a標籤自動跳轉引起的錯誤
- oracle 報大小寫錯誤Oracle
- Oracle nvarchar2錯誤Oracle
- ORA-01653錯誤是Oracle資料庫中常見的錯誤Oracle資料庫
- Javaweb-約束-外來鍵約束JavaWeb
- windows下oracle的ora-27100錯誤WindowsOracle
- IMPDP分割槽表注意事項
- FioriLaunchpadTile點選後跳轉的除錯技巧除錯
- 如何解決邏輯刪除與資料庫唯一約束衝突資料庫
- 這些年錯誤的選擇
- Oracle異常錯誤處理Oracle
- ORACLE 異常錯誤處理Oracle
- 約束CONSTRAINTAI
- 03約束
- MySQL 約束MySql
- SQL約束SQL
- 用Keras中的權值約束緩解過擬合Keras
- ORACLE 資料泵impdp匯入報錯之ORA-31693 ORA-04098Oracle
- 快速顯示oracle錯誤號的含義Oracle