2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

13
mhouri/QCElaps.sql Normal file
View File

@@ -0,0 +1,13 @@
select
sql_id
, round(elapsed_time/1e6,2) QC_time
, px_maxdop DOP
, px_servers_requested
, px_servers_allocated
, round(cpu_time/1e6) cpu
--, round(concurrency_wait_time/1e6,2) conc
, round(user_io_wait_time/1e6) IO_Waits
from gv$sql_monitor
where sql_id = '&sql_id'
and sql_exec_id = '&exec_id'
and sql_text is not null;