• 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一下;

  • 相关阅读:
    如何让Surface RT支持网站的flash
    C# 线程同步
    WPF中Visible设为Collapse时,VisualTreeHelper.GetChildrenCount为0
    Set connectionId threw an exception.
    C# 深化基本概念
    wpf如何获取control template里的元素
    DataGrid当列宽超出当前宽度时,没有数据也恒有滚动条
    利用MEF实现插件机制(可根据输入类型来加载特定dll)
    利用正则表达式类解析SQL语句,达到Worklist兼容各个RIS数据库的目的
    Mysql 创建存储过程 更新表
  • 原文地址:https://www.cnblogs.com/ss-33/p/9289778.html
Copyright © 2020-2023  润新知