Here are some scripts related to Disk I/O, Events, Waits .
DATAFILE I/O NOTES:
select NAME,
PHYRDS "Physical Reads",
round((PHYRDS / PD.PHYS_READS)*100,2) "Read %",
PHYWRTS "Physical Writes",
round(PHYWRTS * 100 / PD.PHYS_WRTS,2) "Write %",
fs.PHYBLKRD+FS.PHYBLKWRT "Total Block I/O's"
from (
select sum(PHYRDS) PHYS_READS,
sum(PHYWRTS) PHYS_WRTS
from v$filestat
) pd,
v$datafile df,
v$filestat fs
where df.FILE# = fs.FILE#
order by fs.PHYBLKRD+fs.PHYBLKWRT desc
SGA STAT NOTES:
select NAME,
BYTES
from v$sgastat
order by NAME
SORT NOTES:
select NAME,
VALUE
from v$sysstat
where NAME like 'sort%'
SYSTEM EVENT (ALL) NOTES:
select EVENT,
TOTAL_WAITS,
TOTAL_TIMEOUTS,
TIME_WAITED,
round(AVERAGE_WAIT,2) "Average Wait"
from v$system_event
order by TOTAL_WAITS
SYSTEM STATISTICS (ALL) NOTES:
select STATISTIC#,
NAME,
CLASS,
VALUE
from v$sysstat
WAIT STATISTIC NOTES:
select CLASS,
COUNT,
TIME
from v$waitstat
order by CLASS
Since you are seeing this, it means that your browser does not support cascading style sheets. Please download and use one of the many browsers that support web standards.