forked from xtender/xt_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind.sql
More file actions
99 lines (95 loc) · 4.53 KB
/
find.sql
File metadata and controls
99 lines (95 loc) · 4.53 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@inc/input_vars_init;
col SQL_ID for a13
col sql_child_number head CH# for 999
col SQL_PROFILE head PROFILE for a19
col time_start for a24
col time_end for a24
col module for a18
col action for a18
col parsing_schema_name for a18
col elaexe for a13
col elacpu for a13
col ela_io for a13
col ela_app for a13
col ela_pls for a13
col all_elaexe for a13
col ROWS_PROCESSED_D for a13
col DIRECT_WRITES_D for a13
col PH_READ_REQS_D for a13
col PH_READ_BYTES_D for a13
col PH_WRITE_REQS_D for a13
col PH_WRITE_BYTES_D for a13
col buf_gets_per_exec for a15
col disk_reads_per_exec for a15
with snaps as (
select/*+ no_merge */
*
from (
select *
from dba_hist_snapshot sn
order by sn.begin_interval_time desc
)
where rownum <= nvl('&2'+0, 24)
)
select--+ leading(snaps st t) use_nl(snaps st t)
st.snap_id
,snaps.begin_interval_time time_start
,snaps.end_interval_time time_end
,st.dbid
,st.sql_id
,st.plan_hash_value
,to_char(decode(st.executions_delta,0,0,st.elapsed_time_delta / 1e6 / st.executions_delta),'9999.99990') as elaexe
,to_char(decode(st.executions_delta,0,0,st.cpu_time_delta / 1e6 / st.executions_delta),'9999.99990') as elacpu
,to_char(decode(st.executions_delta,0,0,st.iowait_delta / 1e6 / st.executions_delta),'9999.99990') as ela_io
,to_char(decode(st.executions_delta,0,0,st.apwait_delta / 1e6 / st.executions_delta),'9999.99990') as ela_app
,to_char(decode(st.executions_delta,0,0,st.PLSEXEC_TIME_DELTA / 1e6 / st.executions_delta),'9999.99990') as ela_pls
,to_char(decode(st.executions_total,0,0,st.elapsed_time_total / 1e6 / st.executions_total),'9999.99990') as all_elaexe
,st.executions_delta as cnt
,st.executions_total as all_cnt
,to_char(decode(st.executions_delta,0,0,st.buffer_gets_delta / st.executions_delta ),'99g999g999d90',q'[nls_numeric_characters='.`']') buf_gets_per_exec
,to_char(decode(st.executions_delta,0,0,st.disk_reads_delta / st.executions_delta ),'999999.90') as disk_reads_per_exec
,st.module
,st.action
,st.sql_profile
,st.parsing_schema_name
,to_char(decode(st.executions_delta,0,0,st.fetches_delta / st.executions_delta),'9999.0') as fetches_delta
,st.end_of_fetch_count_delta eofetch_delta
,st.invalidations_delta
,st.parse_calls_delta
,to_char(decode(st.executions_delta,0,0,st.ROWS_PROCESSED_DELTA / st.executions_delta),'999999.0') as ROWS_PROCESSED_D
,to_char(decode(st.executions_delta,0,0,st.DIRECT_WRITES_DELTA / st.executions_delta),'999999.0') as DIRECT_WRITES_D
,to_char(decode(st.executions_delta,0,0,st.PHYSICAL_READ_REQUESTS_DELTA / st.executions_delta),'999999.0') as PH_READ_REQS_D
,to_char(decode(st.executions_delta,0,0,st.PHYSICAL_READ_BYTES_DELTA / st.executions_delta),'999999.0') as PH_READ_BYTES_D
,to_char(decode(st.executions_delta,0,0,st.PHYSICAL_WRITE_REQUESTS_DELTA / st.executions_delta),'999999.0') as PH_WRITE_REQS_D
,to_char(decode(st.executions_delta,0,0,st.PHYSICAL_WRITE_BYTES_DELTA / st.executions_delta),'999999.0') as PH_WRITE_BYTES_D
from snaps
,dba_hist_sqlstat st
,dba_hist_sqltext t
where
snaps.snap_id = st.snap_id
and snaps.dbid = st.dbid
and snaps.instance_number = st.instance_number
and st.dbid = t.dbid
and st.sql_id = t.sql_id
and upper(t.sql_text) like upper('&1')
/
col time_start clear
col time_end clear
col module clear
col action clear
col parsing_schema_name clear
col elaexe clear
col elacpu clear
col ela_io clear
col ela_app clear
col ela_pls clear
col all_elaexe clear
col ROWS_PROCESSED_D clear
col DIRECT_WRITES_D clear
col PH_READ_REQS_D clear
col PH_READ_BYTES_D clear
col PH_WRITE_REQS_D clear
col PH_WRITE_BYTES_D clear
col buf_gets_per_exec clear
col disk_reads_per_exec clear
@inc/input_vars_undef;