2026-03-12 20:23:15
This commit is contained in:
29
tpt/tq.sql
Normal file
29
tpt/tq.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
|
||||
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
|
||||
|
||||
prompt Show PX Table Queue statistics from last Parallel Execution in this session...
|
||||
|
||||
col tq_tq head "TQ_ID|(DFO,SET)" for a10
|
||||
col tq_flow_dir head "TQ_FLOW|DIRECTION" for a9
|
||||
col tq_process head PROCESS for a10
|
||||
break on tq_tq on dfo_number on tq_id
|
||||
|
||||
select
|
||||
':TQ'||trim(to_char(t.dfo_number))||','||trim(to_char(t.tq_id,'0999')) tq_tq
|
||||
, DECODE(replace(SERVER_TYPE,chr(0),''),'Producer', 'Produced', 'Consumer', 'Consumed', SERVER_TYPE) tq_flow_dir
|
||||
, NUM_ROWS
|
||||
, BYTES
|
||||
-- , OPEN_TIME
|
||||
-- , AVG_LATENCY
|
||||
, WAITS
|
||||
, TIMEOUTS
|
||||
, PROCESS tq_process
|
||||
, INSTANCE
|
||||
, DFO_NUMBER
|
||||
, TQ_ID
|
||||
from
|
||||
v$pq_tqstat t
|
||||
order by
|
||||
dfo_number, tq_id,server_type desc
|
||||
/
|
||||
|
||||
Reference in New Issue
Block a user