diskreads/executions [message #326615] |
Thu, 12 June 2008 02:12 |
bm50793
Messages: 7 Registered: June 2008
|
Junior Member |
|
|
Hi ,
select b.username username, a.disk_reads reads,a.executions exec, a.disk_reads /decode
(a.executions, 0, 1,a.executions) rds_exec_ratio,a.sql_text Statement
from V$sqlarea a, dba_users b
where a.parsing_user_id = b.user_id
and a.disk_reads > 100000
order by a.disk_reads desc;
can anyone please tell me the significance of rds_exec_ratio (indicated in red in the above query) also where can i find the description for the columns of v$SQLAREA
many thanks in advance......
|
|
|
|
|