ORA-15465: STRIPE_COLUMNS of string is less than the minimum of string ORACLE 报错 故障修复 远程处理

文档解释

ORA-15465: STRIPE_COLUMNS of string is less than the minimum of string

Cause: An ADD VOLUME command specified a STRIPE_COLUMNS that was too small.

Action: Select a larger STRIPE_COLUMNS value.

ORA-15465: STRIPE_COLUMNS of string is less than the minimum of string 错误提示STRIPE_COLUMNS参数值小于最小值。

官方解释

ORA-15465:表示用户指定的STRIPE_COLUMNS参数值低于系统内部指定的最小值。

常见案例

在Oracle磁盘组(Diskgroup)中新建虚拟磁盘(VDISK)时,STRIPE_COLUMNS参数被设置为一个无效值,或者比最小值要小。

一般处理方法及步骤

1. 启动SQL*Plus并且使用系统管理员(Sys Admin)身份登入系统。

2. 查阅当前系统内部有效的STRIPE_COLUMNS参数最小值:

select min(stripe_columns) from v$asm_diskgroup;

3. 使用步骤2获取的最小值重新创建磁盘组中的虚拟磁盘:

alter diskgroup add disk ” size striping clause stripe_columns ;

= 步骤2查询出的最小值


数据运维技术 » ORA-15465: STRIPE_COLUMNS of string is less than the minimum of string ORACLE 报错 故障修复 远程处理