Hi friends, in this article I’m going to show you how to remove the ORA-15260 error during creating a new disk group in ASM environments.
If you want to learn how to migrate non-asm to asm please click here for the YouTube video and for complete command docs click here.
Your Problem is:
$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Wed Nov 28 19:26:10 2018
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Automatic Storage Management option
SQL> create diskgroup contfiledisk external redundancy disk '/dev/oracleasm/disks/CONTFILEDISK';
create diskgroup contfiledisk external redundancy disk '/dev/oracleasm/disks/CONTFILEDISK'
*
ERROR at line 1:
ORA-15260: permission denied on ASM disk group
Solution:
$ sqlplus / as sysasm
SQL> create diskgroup contfiledisk external redundancy disk
'/dev/oracleasm/disks/CONTFILEDISK';
Diskgroup created.
I hop you got your answer in this article, if Yes please leave a comment in comment box.
Connect with me on:
Instagram: https://www.instagram.com/shripaldba
Linkedin: https://www.linkedin.com/in/shripal-singh
Twitter: https://twitter.com/ocptechnology
Facebook: https://www.facebook.com/ocptechnology
YouTube:https://www.youtube.com/ocptechnology
One thought on “ORA-15260: PERMISSION DENIED ON ASM DISK GROUP”