ORA-16184: DB_UNIQUE_NAME string hashes to the same value as DB_UNIQUE_NAME string ORACLE 报错 故障修复 远程处理

文档解释

ORA-16184: DB_UNIQUE_NAME string hashes to the same value as DB_UNIQUE_NAME string

Cause: The internal hash value generated for one DB_UNIQUE_NAME collided with the hash value of another DB_UNIQUE_NAME.

Action: Slightly modify one of the DB_UNIQUE_NAMEs so it hashes to a different value.

Oracle 11gR2中出现ORA-16184错误,表示DB_UNIQUE_NAME字符串哈希到与DB_UNIQUE_NAME字符串相同的值。

官方解释

ORA-16184会出现在多个实例的情况下,数据库必须使用不同的DB_UNIQUE_NAME值指定不同的实例。

常见案例

此错误通常发生在将多个数据库实例添加到统一个ASM实例时,两个或多个数据库实例使用相同的DB_UNIQUE_NAME参数值。

一般处理方法及步骤

1.确保每个实例使用所需要设置不同的DB_UNIQUE_NAME。

2.重新启动实例,让发生更改生效。

3.使用alter system set db_unique_name=’新值’ SCOPE=SPFILE; 更改每个实例的参数值。

4.为每个实例确认DB_UNIQUE_NAME参数的特定值的正确性,该值不得覆盖其他实例。

5.运行一下SQL语句:SQL> alter system register;

6.重新启动实例,使更改生效。


数据运维技术 » ORA-16184: DB_UNIQUE_NAME string hashes to the same value as DB_UNIQUE_NAME string ORACLE 报错 故障修复 远程处理