2,104 views
in Storage - ASM by ACE (20,920 points)
SQL> startup
ASM instance started
...
ORA-15032: not all alterations performed
ORA-15063: ASM discovered an insufficient number of disks for diskgroup "RECO"
ORA-15063: ASM discovered an insufficient number of disks for diskgroup "DATA"

 

1 Answer

by ACE (20,920 points)
selected by
 
Best answer

Cause: ASM was unable to find a sufficient number of disks belonging to the diskgroup to continue the operation.
Action: Check that the disks in the diskgroup are present and functioning, that the owner of the ORACLE binary has read/write permission to the disks, and that the ASM_DISKSTRING initialization parameter has been set correctly. Verify that ASM discovers the appropriate disks by querying V$ASM_DISK from the ASM instance.

 

SQL> alter system set asm_diskstring='' scope=spfile;
System altered.
 
SQL> shutdown immediate;
ORA-15100: invalid or missing diskgroup name
ASM diskgroups dismounted
ASM instance shutdown
 
SQL> startup
ASM instance started
...
ASM diskgroups mounted

 

...