expdp报错+-
expdp报错ORA-01555
ORA-39126: Workerunexpected fatal error in KUPW$WORKER.FETCH_XML_OBJECTS[INDEX:"SAPSR3"."LXE_OBJ_EXP_LANG~0"]
ORA-01555: snapshottoo old: rollback segment number 11 with name "_SYSSMU11_2268899145$"too small
ORA-06512: at"SYS.DBMS_SYS_ERROR", line 95
ORA-06512: at"SYS.KUPW$WORKER", line 11259
解决方法:
1. Modify the current UNDO_RETENTION for the database:
select column_name, pctversion, retention
from dba_lobs
where table_name = 'XXX_XXXXX'
2. Modify the LOB retention to become greater than the undersized retention parameter following the steps from Note:563470.1
Table altered.
SQL> alter table <SCHEMA_NAME>.<TABLE_NAME> modify lob(<LOB_COLUMN_NAME>) (retention);
Table altered.
3. Query the lob retention again to verify that the change has taken hold:
RETENTION
----------
16500
4. Perform the export again.
参考文档:
Doc ID 1507116.1
- 点赞
- 收藏
- 关注作者
评论(0)