- 最后登录
- 2014-3-5
- 在线时间
- 3 小时
- 威望
- 0
- 金钱
- 24
- 注册时间
- 2013-8-26
- 阅读权限
- 10
- 帖子
- 9
- 精华
- 0
- 积分
- 0
- UID
- 1201
|
1#
发表于 2013-9-16 10:31:39
|
查看: 3902 |
回复: 1
带content选项导出错误
Export: Release 11.2.0.3.0 - Production on Mon Sep 16 10:15:41 2013
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, Real Application Clusters, Automatic Storage Management, Oracle Label Security,
OLAP, Data Mining, Oracle Database Vault and Real Application Testing optio
Starting "BPPF_BIS"."SYS_EXPORT_TABLE_02": bppf_bis/******** tables=T_BAP_FAVORITE content=data_only ESTIMATE_ONLY=y directory=MOUSE_DMPDIR
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
ORA-39126: Worker unexpected fatal error in KUPW$WORKER.PROCESS_TABLE_EXISTS_ACTION [TABLE_DATA:"BPPF_BIS"."T_BAP_FAVORITE"]
ORA-31600: invalid input value for parameter TABLE_EXISTS_ACTION in function KUPW$WORKER.PROCESS_TABLE_EXISTS_ACTION
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
ORA-06512: at "SYS.KUPW$WORKER", line 9001
----- PL/SQL Call Stack -----
object line object
handle number name
0x9f693e6e0 20462 package body SYS.KUPW$WORKER
0x9f693e6e0 9028 package body SYS.KUPW$WORKER
0x9f693e6e0 16105 package body SYS.KUPW$WORKER
0x9f693e6e0 12466 package body SYS.KUPW$WORKER
0x9f693e6e0 8300 package body SYS.KUPW$WORKER
0x9f693e6e0 10784 package body SYS.KUPW$WORKER
0x9f693e6e0 13698 package body SYS.KUPW$WORKER
0x9f693e6e0 4633 package body SYS.KUPW$WORKER
0x9f693e6e0 9753 package body SYS.KUPW$WORKER
0x9f693e6e0 1775 package body SYS.KUPW$WORKER
0x9f60b4458 2 anonymous block
Job "BPPF_BIS"."SYS_EXPORT_TABLE_02" stopped due to fatal error at 10:15:44
正常导出--没问题
[oracle@bppfedb1 mouse]$ expdp bppf_bis/xxxx tables=T_BAP_FAVORITE ESTIMATE_ONLY=y directory=MOUSE_DMPDIR;
Export: Release 11.2.0.3.0 - Production on Mon Sep 16 10:00:31 2013
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, Real Application Clusters, Automatic Storage Management, Oracle Label Security,
OLAP, Data Mining, Oracle Database Vault and Real Application Testing optio
Starting "BPPF_BIS"."SYS_EXPORT_TABLE_02": bppf_bis/******** tables=T_BAP_FAVORITE ESTIMATE_ONLY=y directory=MOUSE_DMPDIR
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. estimated "BPPF_BIS"."T_BAP_FAVORITE" 128 KB
Total estimation using BLOCKS method: 128 KB
Job "BPPF_BIS"."SYS_EXPORT_TABLE_02" successfully completed at 10:00:34
查询这个表的类型
SQL> select segment_name,segment_type from user_segments where segment_name='T_BAP_FAVORITE';
SEGMENT_NAME SEGMENT_TYPE
--------------------------------------------------------------------------------- ------------------
T_BAP_FAVORITE TABLE
也不是同义词
set linesize 1000
col owner format a25;
col synonym_name format a25;
col table_owner format a25;
col table_name format a25;
col db_link format a25;
SQL> select synonym_name, table_owner, table_name, db_link from user_synonyms where synonym_name='T_BAP_FAVORITE' ;
no rows selected
各位指导下 |
|