ORA-15100: invalid or
missing diskgroup name
ORA-15100:
PURPOSE: All documents are provided on this Blog just for educational purposes only. Please make sure that you run it in your test environment before to move on to production environment.
SQL> alter diskgroup DATE mount;
alter diskgroup DATE
mount
*
ERROR at line 1:
ORA-15100: invalid or missing diskgroup name
SOLUTION:
Login into ASM and
check the
select name,state
from v$asm_diskgroup;
NAME STATE
------------------------------
-----------
DATE DISMOUNTED
Reason:
Because the diskgroup name DATE interpreted as date. This is the reason
that the diskgroup with name DATE cannot start.
You need to start it manually as follow by using apostrophe.
alter diskgroup
"DATE" mount;
NOTE: Always avoid to
you such type of disk group Name.
No comments:
Post a Comment