by http://webgeektutorials.blogspot.com

Monday, June 11, 2012

Oracle DBA Script: Display IO by file

Display IO by file

Code:
select
substr(a.file#,1,2) "#",
substr(a.name,1,30) "Name",
a.status,
a.bytes,
b.phyrds,
b.phywrts
from v$datafile a, v$filestat b
where a.file# = b.file#;

No comments:

Post a Comment