Problém:

DISK_GROUP DISK_FILE_ DISK_FILE_
———- ———- ———-
DATA ORCL:ASM1 ASM1
DATA ORCL:ASM2 ASM2
DATA ORCL:ASM3 ASM3
DATA ORCL:ASM4 ASM4
FRA ORCL:ASM5 ASM5
FRA ORCL:ASM6 ASM6

6 rows selected.

SQL> ALTER DISKGROUP FRA DROP DISK ‘ORCL:ASM6’;
ALTER DISKGROUP FRA DROP DISK ‘ORCL:ASM6’
*
ERROR at line 1:
ORA-15032: not all alterations performed
ORA-15054: disk “ORCL:ASM6” does not exist in diskgroup “FRA”

Řešení:

SQL> select path,name,header_status from v$asm_disk where group_number=2;

PATH NAME HEADER_STATU
——————————————————————————–
ORCL:ASM5 ASM5 MEMBER
ORCL:ASM6 ASM6 MEMBER

SQL> ALTER DISKGROUP FRA DROP DISK ‘ASM6’;

Diskgroup altered.

MOS: alter diskgroup drop disk failed with ORA-15032 ORA-15054 (Doc ID 418980.1)



Komentáře