ORA-10873: file string needs to be either taken out of backup mode or media recovered ORACLE 报错 故障修复 远程处理

文档解释

ORA-10873: file string needs to be either taken out of backup mode or media recovered

Cause: An attempt was made to open a database after an instance failure or SHUTDOWN ABORT interrupted an online backup.

Action: If the indicated file is not a restored backup, then issue the ALTER DATABASE END BACKUP command and open the database. If the file is a restored online backup, then apply media recovery to it and open the database.

ORA-10873:错误表明文件 ‘string’ 必须从备份模式转换为恢复模式或者通过媒体恢复。

官方解释

Oracle数据库报告此错误,当前备份模式下的文件将无法完全恢复。

在备份模式下无法恢复文件,必须将文件从备份模式转换为恢复模式,或者从备份中恢复数据文件的媒体(使用RECOVER DATAFILE从媒体恢复)。

常见案例

(1) 当尝试用于恢复操作的文件处于备份模式时,就可能发生这种情况。

(2) 如果日志文件处于备份模式,则也会发生此错误。

正常处理方法及步骤

此错误的正确处理方法,取决于处于备份模式的文件类型。

1.若要恢复数据文件,则需要将该文件从备份模式改变为恢复模式,或者从备份中恢复文件的媒体:

a. 使用以下命令从备份中恢复损坏的文件:

RMAN> RECOVER DATAFILE file_modified;

b. 使用ALTER DATABASE OPEN RESETLOGS,以重新启动数据库。

2. 对于日志文件,只要把它从备份模式转换为恢复模式,即可解决问题:

RMAN> ALTER DATABASE DESTINATION LOGFILE GROUP number CLEAR;


数据运维技术 » ORA-10873: file string needs to be either taken out of backup mode or media recovered ORACLE 报错 故障修复 远程处理