How to determine the amount of sorting in memory and on disk?
January 16th, 2006 By kirtandesai
You can use the following SQL statement to determine the amount of sorting in memory and on disk:
Select name, value from v$sysstat
where name in ('sorts (memory)', 'sorts (disk)');
If a large number of sorts requires I/O to disk, increase the initialisation parameter SORT_AREA_SIZE.
