impdp报错:ORA-31693, ORA-02354, ORA-00600
Problem: Importing an Oracle 11g R2 Data Pump file containing an ArcSDE 10.x geodatabase encounters Oracle errors ORA-31693, ORA-02354, ORA-00600
Description
Importing an Oracle 11g R2 Data Pump export file containing a ArcSDE 10.x geodatabase fails with errors ORA-31693, ORA-02354, and ORA-00600.
The following example demonstrates using the Oracle Data Pump Import utility to import an Oracle export file containing just the SDE schema from a 10.x geodatabase.
IMPDP system/system directory=IMPDP_DIR dumpfile=IMPDP_DIR:EXPDP_FULL.dmp schemas=SDE logfile=IMPDP_DIR:IMPDP_SDE.log job_name=IMPDP_SDE
The import fails and reports the following error message:
"Processing object type
TABLE_EXPORT/TABLE/TABLE_DATA
ORA-31693: Table data object "SDE"."GDB_ITEMS" failed to load/unload and is being skipped due to error:
ORA-02354: error in exporting/importing data
ORA-00600: internal error code, arguments: [kpudpxcs_ctxConvertStream_ref_1], [SYS_TYPEID("SHAPE")], [], [], [], [], [], [], [], [], [], []"
The same problem also occurs when attempting to import a schema containing data stored in ST_GEOMETRY.
IMPDP system/system directory=IMPDP_DIR dumpfile=IMPDP_DIR:EXPDP_FULL.dmp schemas=MAP logfile=IMPDP_DIR:IMPDP_MAP.log job_name=IMPDP_MAP
The import fails and reports the following error message:
"Processing object type
TABLE_EXPORT/TABLE/TABLE_DATA
ORA-31693: Table data object "MAP"."PARCELS" failed to load/unload and is being skipped due to error:
ORA-02354: error in exporting/importing data
ORA-00600: internal error code, arguments: [kpudpxcs_ctxConvertStream_ref_1], [SYS_TYPEID("SHAPE")], [], [], [], [], [], [], [], [], [], []"
Oracle 11.2.0.1.0 does not exhibit this behavior. Only versions 11.2.0.2.0 and 11.2.0.3.0 are affected.
Cause
This is a bug in Oracle:
Oracle Bug 14026888 - Datapump import gets ORA-600 [kpudpxcs_ctxConvertStream_ref_1] [ID 14026888.8].
Solution or Workaround
Download and apply Oracle Patch 16167942 prior to importing the dumpfile. Please contact Oracle Support to download and gather additional information about this patch.
Even with the Oracle patch applied, views are getting created with compilation errors upon import.
ORA-39082: Object type VIEW:"SDE"."GDB_ITEMS_VW" created with compilation warnings
ORA-39082: Object type VIEW:"SDE"."GDB_ITEMRELATIONSHIPS_VW" created with compilation warnings
These problematic views can be fixed by manually compiling them, or executing the SYS.UTL_RECOMP package against the schema containing these erroneous views:
--------------------------------
-- Manually Compile the Views --
--------------------------------
SQL> ALTER VIEW SDE.GDB_ITEMS_VW COMPILE;
View altered.
SQL> ALTER VIEW SDE.GDB_ITEMRELATIONSHIPS_VW COMPILE;
View altered.
----------------------------------------
-- Execute the SYS.UTL_RECOMP Package --
-- (run as the SYS User) --
----------------------------------------
SQL> select object_name from dba_objects where status <> 'VALID' and owner = 'SDE';
OBJECT_NAME
---------------------------------------
GDB_ITEMS_VW
GDB_ITEMRELATIONSHIPS_VW
2 rows selected.
SQL> EXEC SYS.UTL_RECOMP.RECOMP_SERIAL('SDE');
PL/SQL procedure successfully completed.
SQL> select object_name from dba_objects where status <> 'VALID' and owner = 'SDE';
no rows selected
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了