forked from fatdba/Oracle-Database-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
find_sql_pio.sql
40 lines (40 loc) · 1.26 KB
/
find_sql_pio.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
--
-- Given a string, find all SQLs referencing that string in sql_text (from v$sql) - ordered by physical reads
--
@plusenv
undef sql_string
col sql_id format a13
col execs format 99999999999
col bgets format 99999999999
col bgetspx format 99999999.9
col dreadspx format 99999999.9
col cpusecs format 9999999
col sqltext format a50 trunc
col frclause format a50 trunc
col module format a23 trunc
col puser format a10 trunc head 'ParsingU'
col pctdread format 99.9 head 'PRead|Pct'
col cnt format 999
select sql_id sql_id
,sum(executions) execs
,sum(buffer_gets) bgets
,sum(buffer_gets)/sum(executions) bgetspx
,sum(disk_reads)/sum(executions) dreadspx
,sum(cpu_time)/1000000 cpusecs
,100*ratio_to_report(sum(disk_reads)) over () pctdread
,module module
,parsing_schema_name puser
,count(*) cnt
,dbms_lob.substr(sql_fulltext,50,1) sqltext
,dbms_lob.substr(sql_fulltext,50,instr(lower(sql_text),'from ')) frclause
from v$sql s
where lower(replace(sql_text,chr(13))) like lower('%&sql_string%')
and lower(replace(sql_text,chr(13))) not like ('%v$sql%')
and executions >0
group by sql_id
,module
,parsing_schema_name
,dbms_lob.substr(sql_fulltext,50,1)
,dbms_lob.substr(sql_fulltext,50,instr(lower(sql_text),'from '))
order by sum(disk_reads)
;