ORA-19873: cannot apply this backup section to file string ORACLE 报错 故障修复 远程处理

文档解释 ORA-19873: cannot apply this backup section to file str…

文档解释

ORA-19873: cannot apply this backup section to file string

Cause: RMAN cannot restore a multi-section backup to the indicated file, because this section is not a backup of this file, or the file was not prepared correctly for this restore.

Action: If this error occurs while running RMAN, then it is an internal error and you should contact Oracle support.

ORA-19873: 不能将备份部分应用于指定文件

官方解释

ORA-19873 is a generic Oracle error which indicates that an RMAN operation failed due to problem during the attempt to restore a file specified in the error message. The actual problem causing this error may be indicated in the accompanying error message.

常见案例

常见的原因会导致ORA-19873错误:

1.缺少要恢复的文件或对象。

2.对象需要的一些组件如回退段等等在备份集中不存在。

3.备份集已经损坏。

一般处理方法及步骤

警告/错误解决:

第一步:

1.使用RMAN确定RMAN备份是否存在:

RMAN> list backup;

2.用RMAN确定特定文件是否备份:

RMAN> list backup of archivelog all;

3.单独恢复文件:

RMAN > restore datafile ;

第二步:

1.重新创建控制文件: RMAN> restore controlfile from autobackup;

2.重新创建数据库: RMAN> startup nomount;

3.重新分配Datafiles:RMAN> alter database mount;

4.恢复文件: RMAN> restore database;

5.从恢复的日志恢复: RMAN> recover database;

第三步: 使用dbv工具检查文件: dbv file=;

香港美国云服务器首选港服(Server.HK),2H2G首月10元开通。
港服(Server.HK)(www.IDC.Net)提供简单好用,价格厚道的香港/美国云服务器和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。

为您推荐

港服(Server.HK)MongoDB教程:MongoDB 索引

MongoDB 索引 索引通常能够极大的提高查询的效率,如果没有索引,MongoDB在读取数据时必须扫描集合中的每个文件...

港服(Server.HK)PostgreSQL教程PostgreSQL 别名

PostgreSQL 别名 我们可以用 SQL 重命名一张表或者一个字段的名称,这个名称就叫着该表或该字段的别名。 创建...

港服(Server.HK)Memcached教程:Memcached stats 命令

Memcached stats 命令 Memcached stats 命令用于返回统计信息例如 PID(进程号)、版本号...

港服(Server.HK)Redis教程:Redis 数据类型

Redis 数据类型 Redis支持五种数据类型:string(字符串),hash(哈希),list(列表),set(集...

港服(Server.HK)Redis教程:Redis GEO

Redis GEO Redis GEO 主要用于存储地理位置信息,并对存储的信息进行操作,该功能在 Redis 3.2 ...
返回顶部