20120411——ORA-22973: size of object identifier exceeds maximum size allowed 解決方法

本人在做10g導出的時候報以下錯誤:

EXP-00056: ORACLE error 4045 encountered
ORA-04045: errors during recompilation/revalidation of SYS.KU$_XMLSCHEMA_VIEW
ORA-22973: size of object identifier exceeds maximum size allowed
EXP-00056: ORACLE error 4045 encountered
ORA-04045: errors during recompilation/revalidation of SYS.KU$_XMLSCHEMA_VIEW
ORA-22973: size of object identifier exceeds maximum size allowed
EXP-00000: Export terminated unsuccessfully

還請各位高人指點!

 

解決:

conn /as sysdba

select object_name,status from dba_objects where object_name='KU$_XMLSCHEMA_VIEW';

if invalid then
  alter view SYS.KU$_XMLSCHEMA_VIEW compile;
end if;

if  ORA-22973 occur then
    try :
    alter session set nls_length_semantics=byte;
    alter view KU$_XMLSCHEMA_VIEW compile;
end if;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章