ORA-01255: cannot shutdown – file string in recovery manager backup ORACLE 报错 故障修复 远程处理
文档解释
ORA-01255: cannot shutdown – file string in recovery manager backup
Cause: An attempt to shutdown normally found that a Recovery Manager backup is still in progress.
Action: Wait for the Recovery Manager proxy backup to complete and retry this command.
ORA-01255错误提示当在管理备份中发现文件时不能关闭数据库。
官方解释
ORA-01255是“无法关闭数据库,因为在恢复管理器备份中发现文件”的错误消息。
常见案例
ORA-01255在备份和恢复,以及应用任何未完成的变更时可能发生。此错误发生在恢复管理器(RMAN)对损坏的或正在维护的文件数据库发出关机消息时。
正常处理方法及步骤
1、检查是否有任何未完成的变更:
SQL> select name from v$datafile where status=’NEEDS RECOVERY’;
2、使用强制关机参数来停止数据库:
SQL> shutdown abort;
3、再次尝试关闭数据库:
SQL> shutdown immediate;