ORA-15409: All disks in disk group string are not of the same type.

文档解释

ORA-15409: All disks in disk group string are not of the same type.

Cause: An attempt was made to add disks of a different type to the disk group under appliance mode.

Action: Check if all the disks in the disk group are of the same type. Do not add flash and hard disks to the same disk group.

ORA-15409错误指出磁盘组中的磁盘不是同一类型或形状,因此它们不能被接受。 此错误发生,当ASM上一个尽可能大的 power failures group 具有不同标志(序列号)时。

官方解释

ORA-15409: 所有磁盘在磁盘组 string 中不是相同类型.

表达意思意味着,磁盘组中的磁盘必须是相同的构造,才能满足创建ASM实例的要求。

常见案例

ORA-15409出现因为用户添加到磁盘阵列的磁盘不是相同类型。在这种情况下,Oracle实例会因为ORA-15409错误而无法实例化,不会在ASM磁盘组中看到新添加的磁盘。

一般处理方法及步骤

1. 验证一下磁盘组中每个磁盘的Signature是否一样

使用以下的 SQL*Plus命令可以检查磁盘组里的每一个磁盘的Signature:

sql>select name, mode_status, header_status, CON_ID, state, path, path_status, REQUIRED_MIRRORS, AVAILABLE_MIRRORS,MOUNT_STATUS, HEADER_VERSION, MODE_VERSION from V$ASM_DISK;

2. 将属于不同类型的磁盘移除并将正确的类型的磁盘加入磁盘组

使用以下SQL命令,将硬盘移出磁盘组:

sql>alter diskgroup drop disk ;

然后,添加正确类型的硬盘进入磁盘组:

sql>alter diskgroup add disk ;

3. 要确保硬盘能够正确恢复数据,需要在重新添加磁盘之前完成备份

执行以下SQL命令,备份磁盘组里的所有数据文件:

sql>backup disk group ;

你可能感兴趣的