项目背景:库是从生产库的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;