文档解释
ORA-01149: cannot shutdown – file string has online backup set
Cause: An attempt to shutdown normally found that an online backup is still in progress.
Action: End the backup of the offending tablespace and retry this command.
这是一个Oracle数据库警告,其原因时当前发生在要关闭的文件上有在线备份,不允许关闭,影响数据库服务。
官方解释
当尝试关闭连接到要关闭的server或Instance时,但存储在该文件中的某些表上有在线备份,将会出现ORA-01149: cannot shutdown – file string has online backup set的错误。
常见案例
在尝试关闭Oracle数据库instance时出现ORA-01149错误,这通常是由于实例中的某些文件有在线备份正在运行时引起的。
正常处理方法及步骤
要解决此错误,首先应确定哪些文件具有在线备份,可以使用以下查询查看文件和on-line备份:
SELECT b.file#, b.status, b.checkpoint_change#, b.stop_time, fl.name
FROM v$backup_files b, v$datafile fl
WHERE b.status = ‘ACTIVE’;
完成该查询后,可以使用CANCEL BACKUP和DROP DATABASE BACKUP PIECES命令取消所有备份文件:
SQL> CANCEL BACKUP;
SQL> DROP DATABASE BACKUP PIECES;
完成后就可以成功关闭Oracle数据库实例了。