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

  • 相关阅读:
    TensorFlow_CNN_MNIST遇到的问题
    TensorFlow_CNN_MNIST问题
    TensorFlow_CNN内tf.nn.max_pool和tf.layers.max_pooling2d参数
    TensorFlow_CNN内tf.nn.conv2d和tf.layers.conv2d参数
    mysql 更新语句中加判断条件
    数据库 数据去重并取id最大的数据sql
    elasticsearch------java操作之QueryBuilders构建搜索Query
    Elasticsearch java api 基本搜索部分详解
    java 连接 elasticsearch 报错java.lang.NoClassDefFoundError: org/apache/http/auth/Credentials 解决
    java 获取文件内所有文件名
  • 原文地址:https://www.cnblogs.com/ss-33/p/9289778.html
Copyright © 2011-2022 走看看