Oracle 8.1.7.4 数据库故障恢复一例

mac2022-06-30  87

客户数据库版本为8.1.7.4,数据文件所在磁盘发生故障,故障解决后,数据文件需要recover,并置为online; ORA-00376:file 7 cannot be read at this time ORA-01110:data file 7 。。。 查询v$recover_file查看需要恢复的数据文件 数据库通过nbu备份到磁带,需要从磁带中恢复数据文件7,8,9. rman target "sys/manager" nocatalog run {allocate channel ch01 type "SBT_TAPE"; restore datafile 7; recover datafile 7; } run {allocate channel ch01 type "SBT_TAPE"; restore datafile 8; recover datafile 8; } run {allocate channel ch01 type "SBT_TAPE"; restore datafile 9; recover datafile 9; } alter database open; 确认是否还有需要恢复的数据文件: select * from v$recover_file; 查看v$datafile中offline的数据文件,分别online各个数据文件: alter database datafile '......' online; alter database datafile '......' online; alter database datafile '......' online; OK,所有数据文件已恢复完成。数据完成不一致性恢复。

转载于:https://www.cnblogs.com/seven-dba/p/4354884.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)