ORA-16069: activation identifier mismatch ORACLE 报错 故障修复 远程处理

文档解释

ORA-16069: activation identifier mismatch

Cause: Redo transport failed because the activation identifier of the primary and physical standby databases did not match. This can happen if the physical standby database was not created from a backup of the primary database.

Action: Create a valid configuration and re-try the failed operation.

ORA-16069: activation identifier mismatch错误表示RAC中活动标识(activation ID)不匹配。此错误消息在每个节点上可能会出现。

官方解释

当RAC实例启动时,活动标识(activation ID)由当前活动的实例分配,用于连接当前实例。每个活动标识都应该唯一,否则将出现错误:ORA-16069:激活标识不匹配。

常见案例

常见案例可能会导致ORA-16069错误,其中包括:

1.当一个节点正在回滚时,另一个节点重新启动,其中一个节点正在通过正在回滚的实例上的旧活动标识进行提交。

2.存在两个活动的实例具有相同的活动标识的实例。

一般处理方法及步骤

1.查找失败的节点,并检查以下状态:

a)以系统级别检查数据库状态

SQL> select instance_name,status,thread#

from gv$instance;

b)确定是哪台节点正在回滚

SQL> select inst_id,sequence#,status

from gv$archived_log

where applied = ‘NO’;

c)检查是否存在正在回滚的进程

SQL> select inst_id,process

from gv$session

where status=’ROLLBACK’;

2.如果回滚失败,则停止当前节点并重新启动它。

3.检查活动标识是否存在,如果存在,则确定活动标识是否出现相同情况。

SQL> select instance_name,activation#

from gv$instance;

4.如果两个节点的活动标识相同,则需要重新启动第二个错误的节点并删除它的上一个标识。

5.坚持重新启动节点,直到活动标识分配为唯一值。


数据运维技术 » ORA-16069: activation identifier mismatch ORACLE 报错 故障修复 远程处理