执行后显示
group  sequence arc  sta
1      5818     no   inactive
2      5819     no   invalidated
3      1983     yes  inactive
4      1984     no   current请教一下那个是没有归档,怎么归档 使用clear吗?

解决方案 »

  1.   

    1,2,4都没归档
    看的archived字段.yes就是归档了,no是未归档ALTER SYSTEM ARCHIVE LOG ALL;
      

  2.   

    执行alter system archive log all;后报错
    error 位于第1行
    ora-16020:可用的目的地少于由log_archive_min_succeed_dest指定的数量
      

  3.   

    alter system set log_archive_min_succeed_dest=1;
    然后再试试呢
      

  4.   

    检查一下归档目的地的状态,确定目的地不可用的原因
    select dest_name,type,status from v$archive_dest_status;status: 
    VALID - Initialized and available
    INACTIVE - No destination information
    DEFERRED - Manually disabled by the user
    ERROR - Error during open or copy
    DISABLED - Disabled after error
    BAD PARAM - Parameter has errors
    ALTERNATE - Destination is in an alternate state
    FULL - Exceeded quota size for the destination