Skip to main content

Posts

Showing posts with the label diskgroup

11gR2 how to remove file from ASM diskgroup

11gR2 how to remove file from ASM diskgroup I needed to delete some asm files from my previous database installation. I wanted to use ASMCMD tool so I loaded my ASM environment: [oracle@rac32 ~]$ . oraenv ORACLE_SID = [RAC32] ? +ASM2 The Oracle base for ORACLE_HOME=/u01/app/11.2.0/grid is /u01/app/oracle Then I entered into asmcms tool: [oracle@rac32 ~]$ asmcmd ASMCMD> ls DATA_RAC3/ FRA_RAC3/ ASMCMD> exit [oracle@nov2211 ~]$ asmcmd -p ASMCMD [+] > cd DATA_RAC3 ASMCMD [+DATA_RAC3] > ls RAC3/ ASMCMD [+DATA_RAC3] > cd RAC3 ASMCMD [+DATA_RAC3/RAC3] > ls ARCHIVELOG/ ASMPARAMETERFILE/ OCRFILE/ Ok .. there are some files and I would like to remove them. ASMCMD [+DATA_RAC3/RAC3] > rm ARCHIVE* You may delete multiple files and/or directories. Are you sure? (y/n) y ORA-15032: not all alterations performed ORA-15177: cannot operate on system aliases (DBD ERROR: OCIStmtExecute) That error could be tied at the metalink note 444812.1 and bug 3751057.8 In that doc id they sugges...