zoukankan      html  css  js  c++  java
  • oracle DG RMAN 删除归档报:RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process

    delete noprompt expired archivelog all;

    delete noprompt archivelog until time 'sysdate-2';

    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33658_950811270.arc thread=1 sequence=33658
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33659_950811270.arc thread=1 sequence=33659
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33660_950811270.arc thread=1 sequence=33660
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33661_950811270.arc thread=1 sequence=33661
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33662_950811270.arc thread=1 sequence=33662
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33663_950811270.arc thread=1 sequence=33663
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33664_950811270.arc thread=1 sequence=33664
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33665_950811270.arc thread=1 sequence=33665
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33666_950811270.arc thread=1 sequence=33666
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33667_950811270.arc thread=1 sequence=33667
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33668_950811270.arc thread=1 sequence=33668
    RMAN-08137: WARNING: archived log not deleted, needed for standby or upstream capture process
    archived log file name=/u01/arch/salesdb_1_33669_950811270.arc thread=1 sequence=33669

    ---解决---

    RMAN> delete noprompt force archivelog all completed before 'sysdate-2';

    ---说明---

    此为11g的bug,需要在delete后加上force关键字,metalink上有记载 RMAN-08137 When deleting archivelogs even when Streams CAPTURE does not require them [ID 1079953.1]

    In this Document   Symptoms   Changes   Cause   Solution   References

    Symptoms Applies To: 11gR1-11gR2

    RMAN is unable to delete archive logs from database even though they are not needed by CAPTURE process anymore.

    Changes  

    Cause In 11g, RMAN looks at MIN_REQUIRED_CAPTURE_CHANGE# in v$database and not at DBA_CAPTURE. By default this value is updated every 6 hours. So by default the value in v$database will be six hours behind the current value.

    Solution Since changing frequency of update to MIN_REQUIRED_CAPTURE_CHANGE# in v$database can not be controlled, following workaround can be used:

    Archive log which are not needed by capture process can be deleted using:

    delete noprompt force archivelog all completed before 'sysdate-10/1440';

    PS:我们的环境是12C DG,该BUG在11g中有明确标识,12C就此MARK一下;

  • 相关阅读:
    @RequestParam方式传入list
    编写优美代码的七条规范(Python版)
    汇编程序设计入门
    CSP-S2020解题报告(待完成!)
    [USACO18JAN]MooTube
    DP优化
    AFO记
    考前总结
    清北学堂周末刷题班第五场
    清北学堂考前综合刷题班第四场
  • 原文地址:https://www.cnblogs.com/ss-33/p/9289778.html
Copyright © 2011-2022 走看看