暂无图片
暂无图片
1
暂无图片
暂无图片
暂无图片

ORA-15410 Disks in disk group OCR_VOT do not have equal size

适用范围

Oracle Database - Enterprise Edition - Version 12.1.0.2 to 12.1.0.2 [Release 12.1]

问题概述

SQL> alter diskgroup OCR_VOT add disk '/dev/oracleasm/disks/ocr4', '/dev/oracleasm/disks/ocr5', '/dev/oracleasm/disks/ocr6'; * ERROR at line 1: ORA-15032: not all alterations performed ORA-15410: Disks in disk group OCR_VOT do not have equal size.

问题原因

[grid@snyxdb ~]$ oerr ora 15410 15410, 00000, "Disks in disk group %s do not have equal size." // *Cause: The disks in the disk group were not of equal size. // *Action: Ensure that all disks in the disk group are of equal size. If // adding new disks to the disk group, their size must be equal to // the size of the existing disks in the disk group. If resizing, all // disks in the disk group must be resized to the same size. // [grid@snyxdb ~]$

解决方案

### Option #1: Add new disks to the associated diskgroup with the same size as the existing disk member disks: SQL> alter diskgroup OCR_VOT add disk '/dev/oracleasm/disks/ocr4', 2 '/dev/oracleasm/disks/ocr5', 3 '/dev/oracleasm/disks/ocr6'; Diskgroup altered. SQL> ### Option #2: Use the original bigger disks , but explicitly restrict/define the smaller/even required disk size at ASM level as follows: SQL> alter diskgroup OCR_VOT add disk '/dev/oracleasm/disks/ocr4' size 10G, 2 '/dev/oracleasm/disks/ocr5' size 10G, 3 '/dev/oracleasm/disks/ocr6' size 10G; Diskgroup altered. SQL>

参考文档

12c ASM: Unable To Add New Disks With Dissimilar Size To 12.1.0.2 ASM Diskgroups (Normal or High Redundancy) Due To ORA-15410 (New 12c ASM Enhancement Validation/Constraint) (Doc ID 1938950.1)
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论