RAC 做备份, 下面的OUTPUT*表是调用IMP前建的临时表,里面写要备份的表,视图等信息;但备份报这些表被修改,有没有哪位大佬知道可能原因,多谢!EXP-00056: ORACLE error 1466 encountered
ORA-01466: unable to read data - table definition has changed
. . exporting table               OUTPUTBACKUPINFO
EXP-00056: ORACLE error 1466 encountered
ORA-01466: unable to read data - table definition has changed
. . exporting table                   OUTPUTTABLES
EXP-00056: ORACLE error 1466 encountered
ORA-01466: unable to read data - table definition has changed
. . exporting table                 OUTPUTSEQUENCE

解决方案 »

  1.   

    不好意思,是EXP,写成IMP了。
      

  2.   

    Solution Description:
    =====================This is usually caused when some change has been made to the 
    initialisation parameter FIXED_DATE or the system date. It can occur 
    under different circumstances.1. When doing Date testing and the init.ora parameter FIXED_DATE 
       has been set to a future date.  When the database is started, then 
       that date & time does not change.
       
       So any objects created will have exactly the same Date & Time
       stamp as the FIXED_DATE.   Now When you come to run the EXPORT, it checks the SYSDATE
       and the creation dates for the objects.   You need to modify the TIME in the FIXED_DATE parameter,
       i.e. add 1 hour or few minutes, etc and you will not 
       encounter the error ORA-1466 anymore.        2. The Operating System was reinstalled because of the server crash.
       The system date was not set correctly.  The year was set to 2001 
       instead of 1997 when they reinstalled Oracle.  After some DB activity
       they realized the date was incorrect and reset it to 1997 causing some
       objects to exist with future dates.   Perform full database export without specifying consistent=y and
       recreate the database.
      

  3.   

    如果你做全备,我建议你最好把数据库down下来,down 到immediate就可以了
    如果对象锁的话,那你有的时候数据不会全部exp的。
      

  4.   

    去掉 consistent=y 或者 加大undo_retenition试试
      

  5.   

    我帖的这个note不能解决你的问题吗