SELECT N.NAME, S.STATISTIC#, S.SID, S.VALUE FROM V$STATNAME N, V$SESSTAT S WHERE
N.STATISTIC# IN(SELECT STATISTIC# FROM V$STATNAME WHERE NAME LIKE 'sort%') AND
S.STATISTIC#=N.STATISTIC#;
I don't think your real problems for disk contention are disk sorts. From the above figures, your ratio of disk_sorts/memory_sorts is 0.1%, which *usually* should not cause obvious performance degradation...
You should check other areas of possible causes of disk contention, mainly physical db_datafiles and redo/arch_log_files layout....
HTH,
Jurij Modic ASCII a stupid question, get a stupid ANSI
24 hours in a day .... 24 beer in a case .... coincidence?
Bookmarks