ORA-16629: database reports a different protection level from the protection mode ORACLE 报错 故障修复 远程处理

文档解释 ORA-16629: database reports a different protection leve…

文档解释

ORA-16629: database reports a different protection level from the protection mode

Cause: The current database protection level was different from the configured protection mode. This typically was caused by redo transport problems, or the primary database was not open.

Action: Check the database alert logs and Data Guard broker logs for more details. Also, check the redo transport status. Ensure that one standby database supports the configured protection mode and that the network to that standby database is working properly. Ensure the primary database is open.

ORA-16629错误是一种数据库报告和保护模式之间存在不一致的情况。这种不一致可能是由于备份过程未正确完成或不正确操作造成的。

官方解释

ORA-16629是当数据库报告的保护级别(例如高度保护)与其实际保护模式(未保护)不符时,在使用rman进行穿越备份时,所发出的错误。更多或更清楚的信息应当是ORA-16609(用于数据库参数组提供的保护模式类型和当前报告的保护级别不匹配)和ORA-16627(实例保护模式与保护等级报告不匹配)

常见案例

1.您已经配置了一个RMAN穿越备份,其中有一些数据库实例,使用保护模式为“HIGH”,但是在执行此备份过程中,你得到ORA-16629错误日志

2.在RMAN中使用某些特定备份范围(例如-aztec-)作为备份源时得到ORA-16629

一般处理方法及步骤

1.检查数据库实例的保护模式:

SQL>show parameter protection_mode

2.如果保护模式不是应该的值,请修改它:

SQL>alter system set protection_mode=HIGH

3.如果保护模式的值正确,检查数据库报告的保护级别:

SQL>select NAME, PROTECTIONMODE, PROTECTIONLEVEL from V$DATABASE;

4.如果需要,将数据库报告修改为正确的级别:

SQL>alter database set protection mode=high;

5. 重新开始穿越备份,并确保使用正确的备份范围:

RMAN>backup archivelog from sequence 2 until sequence 4 这或其他回滚段可以做备份

香港美国云服务器首选港服(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 ...
返回顶部