DBA Hub

📋Steps in this guide1/1

Get asm disk info

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;

oracle configurationintermediate
by OracleDba
24 views
1

Get asm disk info

Code/Command (click line numbers to comment):

1
2
3
4
5
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;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!