RMAN-06207: WARNING: 1 objects could not be deleted for DISK channel(s) due

项目背景:库是从生产库的rman备份文件中恢复出来的,在rman命令中删除归档日志时,报如下错误:

RMAN-06207: WARNING: 1 objects could not be deleted for DISK channel(s) due
RMAN-06208: to mismatched status. Use CROSSCHECK command to fix status
RMAN-06210: List of Mismatched objects
RMAN-06211: ==========================
RMAN-06212: Object Type Filename/Handle
RMAN-06213: --------------- ---------------------------------------------------
RMAN-06214: Archivelog +DATA/panoddb/archivelog/2021_07_02/thread_1_seq_166604.1510.1076851739

解决方法:

rman target /

--检查归档

rman >RMAN> crosscheck archivelog all;

--删除实效归档
RMAN> delete expired archivelog all;

--列出归档

RMAN> list archivelog all;

喜欢请赞赏一下啦^_^

微信赞赏

支付宝赞赏

原文地址:https://www.cnblogs.com/lkj371/p/15001255.html