ORA-15032: not all alterations performed ORA-15031 ORA-15025 ORA-27041 ORA-15014 | Add Disks to ASM Disk Group in Oracle

Hi,

When you add disks to the ASM Disk group, you can get ” ORA-15032 ORA-15031 ORA-15025 ORA-27041 ” errors.

 

Details of error are as follows.

ALTER DISKGROUP DATA ADD DISK '/dev/oracleasm/disks/ASMDATA08' NAME ASMDATA08 SIZE 512G REBALANCE POWER 10;

ORA-15032: not all alterations performed
ORA-15031: disk specification '/dev/oracleasm/disks/ASMDATA08' matches no disks
ORA-15025: could not open disk "/dev/oracleasm/disks/ASMDATA08"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 42

 

To solve this problem, you need to alter asm_diskstring parameter as follows.

alter system set asm_diskstring = '/dev/oracleasm/disks/*' SID='*' scope=both;

SQL> alter system set asm_diskstring = '/dev/oracleasm/disks/ASMDATA*' SID='*' scope=both;
alter system set asm_diskstring = '/dev/oracleasm/disks' SID='*' scope=both
*
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-15014: path 'ORCL:ASMDATA06' is not in the discovery set   

If you got also above errors.

Modify it into SPFile then restart Database and CRS.

SQL> alter system set asm_diskstring = '/dev/oracleasm/disks/ASMDATA*' SID='*' scope=spfile;

 

 

Once you restarted CRS and Database, you can try it again.

SQL> alter diskgroup DATA add disk '/dev/oracleasm/disks/ASMDATA08';

Diskgroup altered.

SQL> alter diskgroup DATA add disk '/dev/oracleasm/disks/ASMDATA09';

Diskgroup altered.

SQL>

 

 

Do you want to learn more detail about Oracle ASM ? Read the following article.

https://ittutorial.org/oracle-automatic-storage-management-2-asm/

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

One comment

  1. Pingback: My Homepage

Leave a Reply

Your email address will not be published. Required fields are marked *