zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

ORA-15409: All disks in disk group string are not of the same type. ORACLE 报错 故障修复 远程处理

Oracle ORA 故障 处理 远程 报错 修复 string
2023-06-13 09:19:39 时间
ORA-15409: All disks in disk group string are not of the same type. ORACLE 报错 故障修复 远程处理

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 ;


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 ORA-15409: All disks in disk group string are not of the same type. ORACLE 报错 故障修复 远程处理