Oracle Rac check commands
==> Asm commmands set pagesize 2000 set lines 2000 set long 999 col path for a54 select name, path, header_status, total_mb free_mb, trunc(bytes_read/1024/1024) read_mb, trunc(bytes_written/1024/1024) write_mb from v$asm_disk; SELECT name, free_mb, total_mb, free_mb/total_mb*100 as percentage FROM v$asm_diskgroup; select * from V$ASM_DISK_IOSTAT; ==> Mount/dismount ASM disk groups -- For mount a diskgroup,(This is instance specific, for mounting on all nodes, run the same on all nodes) SQL>alter diskgroup DATA mount; or asmcmd>mount DATA -- For umount a diskgroup,(This is instance specific, for unmounting on all nodes, run the same on all nodes) SQL>alter diskgroup DATA dismount; Or asmcmd>umount DATA -- To mount/Dismount all the diskgroups SQL>alter diskgroup ALL mount; SQL>alter diskgroup ALL dismount; ==> Drop ASM diskgroup -- To drop a diskgroup, make sure the diskgroup has been dismounted from all the remote nodes, It should be mounted ...