Show ASM Disk Group Size

Administering Oracle Automatic Storage Management (ASM)
Post Reply
User avatar
jimb
Site Admin
Posts: 6146
Joined: Thu Jan 19, 2012 1:10 pm
Location: New Delhi, India
Contact:

Show ASM Disk Group Size

Post by jimb »

To show show disk space usage,

SET lines 200
SELECT name,
type,
total_mb,
free_mb,
required_mirror_free_mb,
usable_file_mb,
free_mb/total_mb*100 "% Free"
FROM V$ASM_DISKGROUP;


Sample Output:

Code: Select all

NAME                 TYPE     TOTAL_MB    FREE_MB REQUIRED_MIRROR_FREE_MB USABLE_FILE_MB     % Free
-------------------- ------ ---------- ---------- ----------------------- -------------- ----------
VOL1                 NORMAL       6134       2178                       0           1089 35.5070101
Oracle Database Administration Forums
http://www.oracle-forums.com/
xaeresis
Posts: 196117
Joined: Wed Oct 04, 2023 2:39 pm

Re: Show ASM Disk Group Size

Post by xaeresis »

Post Reply