[Oracle] oracle查看asm磁盘使用情况 2019-09-21 本文总阅读量次 123col total_size for a10;col free_size for a20;select name,total_mb/1024 || 'G' as total_size , free_mb/1024 || 'G' as free_size from v$asm_diskgroup;