Requirements
This script is intended to be run via sqlplus during a session or
system level hang in a RAC environment. The script should be run
connected as SYSDBA role.
There are some types of hangs that will prevent this script from
running. If the script will not run then it would be advisable to get
global hanganalyze/systemstate dumps connected as SYSDBA to help support
debug the problem. If sysdba connection doesn't work then use prelim
connection (Available from 10.2 version onwards).
If the script will not run properly do the following for each version:
Run the following set of commands on any one instance, 2-3 times - 1 minute apart:
------------------------------------------------------------------------------
$ sqlplus "/ as sysdba"
SQL> oradebug setmypid
SQL> oradebug unlimit
SQL> oradebug -g all hanganalyze 3
SQL> oradebug -g all dump systemstate 258
If sysdba connection doesn't work then use prelim connection.
(Available from 10.2 version onwards).
$ sqlplus -prelim / as sysdba
SQL> oradebug setmypid
SQL> oradebug unlimit
SQL> oradebug -g all hanganalyze 3
SQL> oradebug -g all dump systemstate 258
This script is broken up into different SQL statements that can be
used individually. Each SQL statement adds information to help in
debugging an RAC hang/severe performance scenario. It will also collect
some ASH data where the user can specify how much data to collect.
---------------------------------
Configuring
Simply copy and paste the racdiag.sql script, place it in a directory, and give it permissions.
Instructions
Sqlplus example:
$ sqlplus '/ as sysdba'
SQL> @racdiag.sql
Script
-- NAME: RACDIAG.SQL
-- ------------------------------------------------------------------------
-- AUTHOR:
-- Michael Polaski - Oracle Support Services
-- Copyright 2002, Oracle Corporation
-- ------------------------------------------------------------------------
-- PURPOSE:
-- This script is intended to provide a user friendly guide to troubleshoot
-- RAC hung sessions or slow performance scenerios. The script includes
-- information to gather a variety of important debug information to determine
-- the cause of a RAC session level hang. The script will create a file
-- called racdiag_.out in your local directory while dumping hang analyze
-- dumps in the respective user_dump_dest/background_dump_dest/diagnostic_dest on all nodes.
--
-- ------------------------------------------------------------------------
-- DISCLAIMER:
-- This script is provided for educational purposes only.
-- ------------------------------------------------------------------------
-- Script output is as follows:
set echo off
define SRDCNAME='racdiag'
set pagesize 200 verify off term off entmap off echo off
set markup html on spool on
column dbname_col new_value dbname
column time_col new_value timestamp
select to_char(sysdate,'YYYYMMDD_HH24MISS') time_col,
(select value from v$parameter where name = 'db_name') as dbname_col
from sys.dual;
COLUMN SRDCSPOOLNAME NOPRINT NEW_VALUE SRDCSPOOLNAME
select
'SRDC_'||upper('&&SRDCNAME')||'_'||upper(instance_name)||'_'||
'&×tamp' SRDCSPOOLNAME from v$instance;
spool &&SRDCSPOOLNAME..htm
select '+----------------------------------------------------+' "RACDIAG.SQL Script Output" from dual
union all
select '| Diagnostic-Name: '||'&&SRDCNAME' from dual
union all
select '| Timestamp: '||to_char(systimestamp,'YYYY-MM-DD HH24:MI:SS TZH:TZM') from dual
union all
select '| Machine: '||host_name from v$instance
union all
select '| Version: '||version from v$instance
union all
select '| DBName: '||name from v$database
union all
select '| Instance: '||instance_name from v$instance
union all
select '+----------------------------------------------------+' from dual;
set lines 200
set pagesize 35
set trim on
set trims on
alter session set nls_date_format = 'MON-DD-YYYY HH24:MI:SS';
alter session set timed_statistics = true;
set feedback on
-- select to_char(sysdate) time from dual;
set numwidth 5
column host_name format a20 tru
select inst_id, instance_name, host_name, version, status, startup_time
from gv$instance
order by inst_id;
set echo on
-- WAIT CHAINS
-- 11.x+ Only (This will not work in < v11
-- See Note 1428210.1 for instructions on interpreting.
set pages 1000
set lines 120
set heading on
column w_proc format a50 tru
column instance format a20 tru
column inst format a28 tru
column wait_event format a50 tru
column p1 format a16 tru
column p2 format a16 tru
column p3 format a15 tru
column Seconds format a50 tru
column sincelw format a50 tru
column blocker_proc format a50 tru
column waiters format a50 tru
column chain_signature format a100 wra
column blocker_chain format a100 wra
SELECT *
FROM (SELECT 'Current Process: '||osid W_PROC, 'SID '||i.instance_name INSTANCE,
'INST #: '||instance INST,'Blocking Process: '||decode(blocker_osid,null,'',blocker_osid)||
' from Instance '||blocker_instance BLOCKER_PROC,'Number of waiters: '||num_waiters waiters,
'Wait Event: ' ||wait_event_text wait_event, 'P1: '||p1 p1, 'P2: '||p2 p2, 'P3: '||p3 p3,
'Seconds in Wait: '||in_wait_secs Seconds, 'Seconds Since Last Wait: '||time_since_last_wait_secs sincelw,
'Wait Chain: '||chain_id ||': '||chain_signature chain_signature,'Blocking Wait Chain: '||decode(blocker_chain_id,null,
'',blocker_chain_id) blocker_chain
FROM v$wait_chains wc,
v$instance i
WHERE wc.instance = i.instance_number (+)
AND ( num_waiters > 0
OR ( blocker_osid IS NOT NULL
AND in_wait_secs > 10 ) )
ORDER BY chain_id,
num_waiters DESC)
WHERE ROWNUM < 101;
-- Taking Hang Analyze dumps
-- This may take a little while...
oradebug setmypid
oradebug unlimit
oradebug -g all hanganalyze 3
-- WAITING SESSIONS:
-- The entries that are shown at the top are the sessions that have
-- waited the longest amount of time that are waiting for non-idle wait
-- events (event column). You can research and find out what the wait
-- event indicates (along with its parameters) by checking the Oracle
-- Server Reference Manual or look for any known issues or documentation
-- by searching Metalink for the event name in the search bar. Example
-- (include single quotes): [ 'buffer busy due to global cache' ].
-- Metalink and/or the Server Reference Manual should return some useful
-- information on each type of wait event. The inst_id column shows the
-- instance where the session resides and the SID is the unique identifier
-- for the session (gv$session). The p1, p2, and p3 columns will show
-- event specific information that may be important to debug the problem.
-- To find out what the p1, p2, and p3 indicates see the next section.
-- Items with wait_time of anything other than 0 indicate we do not know
-- how long these sessions have been waiting.
--
set numwidth 15
set heading on
column state format a7 tru
column event format a25 tru
column last_sql format a40 tru
select sw.inst_id, sw.sid, sw.state, sw.event, sw.seconds_in_wait seconds,
sw.p1, sw.p2, sw.p3, sa.sql_text last_sql
from gv$session_wait sw, gv$session s, gv$sqlarea sa
where sw.event not in
('rdbms ipc message','smon timer','pmon timer',
'SQL*Net message from client','lock manager wait for remote message',
'ges remote message', 'gcs remote message', 'gcs for action', 'client message',
'pipe get', 'null event', 'PX Idle Wait', 'single-task message',
'PX Deq: Execution Msg', 'KXFQ: kxfqdeq - normal deqeue',
'listen endpoint status','slave wait','wakeup time manager')
and sw.seconds_in_wait > 0
and (sw.inst_id = s.inst_id and sw.sid = s.sid)
and (s.inst_id = sa.inst_id and s.sql_address = sa.address)
order by seconds desc;
-- EVENT PARAMETER LOOKUP:
-- This section will give a description of the parameter names of the
-- events seen in the last section. p1test is the parameter value for
-- p1 in the WAITING SESSIONS section while p2text is the parameter
-- value for p3 and p3 text is the parameter value for p3. The
-- parameter values in the first section can be helpful for debugging
-- the wait event.
--
column event format a30 tru
column p1text format a25 tru
column p2text format a25 tru
column p3text format a25 tru
select distinct event, p1text, p2text, p3text
from gv$session_wait sw
where sw.event not in ('rdbms ipc message','smon timer','pmon timer',
'SQL*Net message from client','lock manager wait for remote message',
'ges remote message', 'gcs remote message', 'gcs for action', 'client message',
'pipe get', 'null event', 'PX Idle Wait', 'single-task message',
'PX Deq: Execution Msg', 'KXFQ: kxfqdeq - normal deqeue',
'listen endpoint status','slave wait','wakeup time manager')
and seconds_in_wait > 0
order by event;
-- GES LOCK BLOCKERS:
-- This section will show us any sessions that are holding locks that
-- are blocking other users. The inst_id will show us the instance that
-- the session resides on while the sid will be a unique identifier for
-- the session. The grant_level will show us how the GES lock is granted to
-- the user. The request_level will show us what status we are trying to
-- obtain. The lockstate column will show us what status the lock is in.
-- The last column shows how long this session has been waiting.
--
set numwidth 5
column state format a16 tru;
column event format a30 tru;
select dl.inst_id, s.sid, p.spid, dl.resource_name1,
decode(substr(dl.grant_level,1,8),'KJUSERNL','Null','KJUSERCR','Row-S (SS)',
'KJUSERCW','Row-X (SX)','KJUSERPR','Share','KJUSERPW','S/Row-X (SSX)',
'KJUSEREX','Exclusive',request_level) as grant_level,
decode(substr(dl.request_level,1,8),'KJUSERNL','Null','KJUSERCR','Row-S (SS)',
'KJUSERCW','Row-X (SX)','KJUSERPR','Share','KJUSERPW','S/Row-X (SSX)',
'KJUSEREX','Exclusive',request_level) as request_level,
decode(substr(dl.state,1,8),'KJUSERGR','Granted','KJUSEROP','Opening',
'KJUSERCA','Canceling','KJUSERCV','Converting') as state,
s.sid, sw.event, sw.seconds_in_wait sec
from gv$ges_enqueue dl, gv$process p, gv$session s, gv$session_wait sw
where blocker = 1
and (dl.inst_id = p.inst_id and dl.pid = p.spid)
and (p.inst_id = s.inst_id and p.addr = s.paddr)
and (s.inst_id = sw.inst_id and s.sid = sw.sid)
order by sw.seconds_in_wait desc;
-- GES LOCK WAITERS:
-- This section will show us any sessions that are waiting for locks that
-- are blocked by other users. The inst_id will show us the instance that
-- the session resides on while the sid will be a unique identifier for
-- the session. The grant_level will show us how the GES lock is granted to
-- the user. The request_level will show us what status we are trying to
-- obtain. The lockstate column will show us what status the lock is in.
-- The last column shows how long this session has been waiting.
--
set numwidth 5
column state format a16 tru;
column event format a30 tru;
select dl.inst_id, s.sid, p.spid, dl.resource_name1,
decode(substr(dl.grant_level,1,8),'KJUSERNL','Null','KJUSERCR','Row-S (SS)',
'KJUSERCW','Row-X (SX)','KJUSERPR','Share','KJUSERPW','S/Row-X (SSX)',
'KJUSEREX','Exclusive',request_level) as grant_level,
decode(substr(dl.request_level,1,8),'KJUSERNL','Null','KJUSERCR','Row-S (SS)',
'KJUSERCW','Row-X (SX)','KJUSERPR','Share','KJUSERPW','S/Row-X (SSX)',
'KJUSEREX','Exclusive',request_level) as request_level,
decode(substr(dl.state,1,8),'KJUSERGR','Granted','KJUSEROP','Opening',
'KJUSERCA','Cancelling','KJUSERCV','Converting') as state,
s.sid, sw.event, sw.seconds_in_wait sec
from gv$ges_enqueue dl, gv$process p, gv$session s, gv$session_wait sw
where blocked = 1
and (dl.inst_id = p.inst_id and dl.pid = p.spid)
and (p.inst_id = s.inst_id and p.addr = s.paddr)
and (s.inst_id = sw.inst_id and s.sid = sw.sid)
order by sw.seconds_in_wait desc;
-- LOCAL ENQUEUES:
-- This section will show us if there are any local enqueues. The inst_id will
-- show us the instance that the session resides on while the sid will be a
-- unique identifier for. The addr column will show the lock address. The type
-- will show the lock type. The id1 and id2 columns will show specific
-- parameters for the lock type.
--
set numwidth 12
column event format a12 tru
select l.inst_id, l.sid, l.addr, l.type, l.id1, l.id2,
decode(l.block,0,'blocked',1,'blocking',2,'global') block,
sw.event, sw.seconds_in_wait sec
from gv$lock l, gv$session_wait sw
where (l.sid = sw.sid and l.inst_id = sw.inst_id)
and l.block in (0,1)
order by l.type, l.inst_id, l.sid;
-- LATCH HOLDERS:
-- If there is latch contention or 'latch free' wait events in the WAITING
-- SESSIONS section we will need to find out which proceseses are holding
-- latches. The inst_id will show us the instance that the session resides
-- on while the sid will be a unique identifier for. The username column
-- will show the session's username. The os_user column will show the os
-- user that the user logged in as. The name column will show us the type
-- of latch being waited on. You can search Metalink for the latch name in
-- the search bar. Example (include single quotes):
-- [ 'library cache' latch ]. Metalink should return some useful information
-- on the type of latch.
--
set numwidth 5
select distinct lh.inst_id, s.sid, s.username, p.username os_user, lh.name
from gv$latchholder lh, gv$session s, gv$process p
where (lh.sid = s.sid and lh.inst_id = s.inst_id)
and (s.inst_id = p.inst_id and s.paddr = p.addr)
order by lh.inst_id, s.sid;
-- LATCH STATS:
-- This view will show us latches with less than optimal hit ratios
-- The inst_id will show us the instance for the particular latch. The
-- latch_name column will show us the type of latch. You can search Metalink
-- for the latch name in the search bar. Example (include single quotes):
-- [ 'library cache' latch ]. Metalink should return some useful information
-- on the type of latch. The hit_ratio shows the percentage of time we
-- successfully acquired the latch.
--
column latch_name format a30 tru
select inst_id, name latch_name,
round((gets-misses)/decode(gets,0,1,gets),3) hit_ratio,
round(sleeps/decode(misses,0,1,misses),3) "SLEEPS/MISS"
from gv$latch
where round((gets-misses)/decode(gets,0,1,gets),3) < .99
and gets != 0
order by round((gets-misses)/decode(gets,0,1,gets),3);
-- No Wait Latches:
--
select inst_id, name latch_name,
round((immediate_gets/(immediate_gets+immediate_misses)), 3) hit_ratio,
round(sleeps/decode(immediate_misses,0,1,immediate_misses),3) "SLEEPS/MISS"
from gv$latch
where round((immediate_gets/(immediate_gets+immediate_misses)), 3) < .99
and immediate_gets + immediate_misses > 0
order by round((immediate_gets/(immediate_gets+immediate_misses)), 3);
-- GLOBAL CACHE CR PERFORMANCE
-- This shows the average latency of a consistent block request.
-- AVG CR BLOCK RECEIVE TIME should typically be about 15 milliseconds
-- depending on your system configuration and volume, is the average
-- latency of a consistent-read request round-trip from the requesting
-- instance to the holding instance and back to the requesting instance. If
-- your CPU has limited idle time and your system typically processes
-- long-running queries, then the latency may be higher. However, it is
-- possible to have an average latency of less than one millisecond with
-- User-mode IPC. Latency can be influenced by a high value for the
-- DB_MULTI_BLOCK_READ_COUNT parameter. This is because a requesting process
-- can issue more than one request for a block depending on the setting of
-- this parameter. Correspondingly, the requesting process may wait longer.
-- Also check interconnect badwidth, OS tcp settings, and OS udp settings if
-- AVG CR BLOCK RECEIVE TIME is high.
--
set numwidth 20
column "AVG CR BLOCK RECEIVE TIME (ms)" format 9999999.9
select b1.inst_id, b2.value "GCS CR BLOCKS RECEIVED",
b1.value "GCS CR BLOCK RECEIVE TIME",
((b1.value / b2.value) * 10) "AVG CR BLOCK RECEIVE TIME (ms)"
from gv$sysstat b1, gv$sysstat b2
where b1.name = 'global cache cr block receive time' and
b2.name = 'global cache cr blocks received' and b1.inst_id = b2.inst_id
or b1.name = 'gc cr block receive time' and
b2.name = 'gc cr blocks received' and b1.inst_id = b2.inst_id ;
-- GLOBAL CACHE LOCK PERFORMANCE
-- This shows the average global enqueue get time.
-- Typically AVG GLOBAL LOCK GET TIME should be 20-30 milliseconds. the
-- elapsed time for a get includes the allocation and initialization of a
-- new global enqueue. If the average global enqueue get (global cache
-- get time) or average global enqueue conversion times are excessive,
-- then your system may be experiencing timeouts. See the 'WAITING SESSIONS',
-- 'GES LOCK BLOCKERS', GES LOCK WAITERS', and 'TOP 10 WAIT EVENTS ON SYSTEM'
-- sections if the AVG GLOBAL LOCK GET TIME is high.
--
set numwidth 20
column "AVG GLOBAL LOCK GET TIME (ms)" format 9999999.9
select b1.inst_id, (b1.value + b2.value) "GLOBAL LOCK GETS",
b3.value "GLOBAL LOCK GET TIME",
(b3.value / (b1.value + b2.value) * 10) "AVG GLOBAL LOCK GET TIME (ms)"
from gv$sysstat b1, gv$sysstat b2, gv$sysstat b3
where b1.name = 'global lock sync gets' and
b2.name = 'global lock async gets' and b3.name = 'global lock get time'
and b1.inst_id = b2.inst_id and b2.inst_id = b3.inst_id
or b1.name = 'global enqueue gets sync' and
b2.name = 'global enqueue gets async' and b3.name = 'global enqueue get time'
and b1.inst_id = b2.inst_id and b2.inst_id = b3.inst_id;
-- RESOURCE USAGE
-- This section will show how much of our resources we have used.
--
set numwidth 8
select inst_id, resource_name, current_utilization, max_utilization,
initial_allocation
from gv$resource_limit
where max_utilization > 0
order by inst_id, resource_name;
-- DLM TRAFFIC INFORMATION
-- This section shows how many tickets are available in the DLM. If the
-- TCKT_WAIT columns says "YES" then we have run out of DLM tickets which
-- could cause a DLM hang. Make sure that you also have enough TCKT_AVAIL.
--
set numwidth 10
select * from gv$dlm_traffic_controller
order by TCKT_AVAIL;
-- DLM MISC
--
set numwidth 10
select * from gv$dlm_misc;
-- LOCK CONVERSION DETAIL:
-- This view shows the types of lock conversion being done on each instance.
--
select * from gv$lock_activity;
-- INITIALIZATION PARAMETERS:
-- Non-default init parameters for each node.
--
set numwidth 5
column name format a30 tru
column value format a50 wra
column description format a60 tru
select inst_id, name, value, description
from gv$parameter
where isdefault = 'FALSE'
order by inst_id, name;
-- TOP 10 WAIT EVENTS ON SYSTEM
-- This view will provide a summary of the top wait events in the db.
--
set numwidth 10
column event format a25 tru
select inst_id, event, time_waited, total_waits, total_timeouts
from (select inst_id, event, time_waited, total_waits, total_timeouts
from gv$system_event where event not in ('rdbms ipc message','smon timer',
'pmon timer', 'SQL*Net message from client','lock manager wait for remote message',
'ges remote message', 'gcs remote message', 'gcs for action', 'client message',
'pipe get', 'null event', 'PX Idle Wait', 'single-task message',
'PX Deq: Execution Msg', 'KXFQ: kxfqdeq - normal deqeue',
'listen endpoint status','slave wait','wakeup time manager')
order by time_waited desc)
where rownum < 11
order by time_waited desc;
-- SESSION/PROCESS REFERENCE:
-- This section is very important for most of the above sections to find out
-- which user/os_user/process is identified to which session/process.
--
set numwidth 7
column event format a30 tru
column username format a15 tru
select p.inst_id, s.sid, s.serial#, p.pid, p.spid, p.program, s.username,
p.username os_user, sw.event, sw.seconds_in_wait sec
from gv$process p, gv$session s, gv$session_wait sw
where (p.inst_id = s.inst_id and p.addr = s.paddr)
and (s.inst_id = sw.inst_id and s.sid = sw.sid)
order by p.inst_id, s.sid;
-- SYSTEM STATISTICS:
-- All System Stats with values of > 0. These can be referenced in the
-- Server Reference Manual
--
set numwidth 5
column name format a60 tru
column value format 9999999999999999999999999
select inst_id, name, value
from gv$sysstat
where value > 0
order by inst_id, name;
-- CURRENT SQL FOR WAITING SESSIONS:
-- Current SQL for any session in the WAITING SESSIONS list
--
set numwidth 5
column sql format a80 wra
select sw.inst_id, sw.sid, sw.seconds_in_wait sec, sa.sql_text sql
from gv$session_wait sw, gv$session s, gv$sqlarea sa
where sw.sid = s.sid (+)
and sw.inst_id = s.inst_id (+)
and s.sql_address = sa.address
and sw.event not in ('rdbms ipc message','smon timer','pmon timer',
'SQL*Net message from client','lock manager wait for remote message',
'ges remote message', 'gcs remote message', 'gcs for action', 'client message',
'pipe get', 'null event', 'PX Idle Wait', 'single-task message',
'PX Deq: Execution Msg', 'KXFQ: kxfqdeq - normal deqeue',
'listen endpoint status','slave wait','wakeup time manager')
and sw.seconds_in_wait > 0
order by sw.seconds_in_wait desc;
set echo off
select to_char(sysdate) time from dual;
spool off
set echo off
prompt
prompt ============================================================================================
prompt +++++++++++++++++++++End of SRDC Data Collection+++++++++++++
prompt ============================================================================================
prompt
spool off
set markup html off spool off
set sqlprompt "SQL> " term on echo off
--
PROMPT======================================================================================================================================
-- PROMPT
-- PROMPT
-- PROMPT REPORT GENERATED : &SRDCSPOOLNAME..htm
-- -- ---------------------------------------------------------------------------
--
-- Prompt;
-- Prompt racdiag output files have been written to:;
-- Prompt;
-- host pwd
-- ########################################
-- Collect data from Active Session History
-- ########################################
set serverout on size unl;
set lines 5000
set trimspool on
set term off echo off
set feedback off
column ash_csv_file new_value ash_csv_file format a128;
column ash_csv_out_filename new_value ash_csv_out_filename format a128;
column diag_zip_file new_value diag_zip_file format a128;
column srdc_html_file new_value srdc_html_file format a128;
column hanganalyze_trc_file new_value hanganalyze_trc_file format a256;
select
'ash_csv_' || '&&dbname' || '_' || '&×tamp' || '.csv' ash_csv_file,
'ash_csv_' || '&&dbname' || '_' || '&×tamp' || '.csv.out' ash_csv_out_filename,
'racdiag_' || '&&dbname' || '_' || '&×tamp' || '.zip' diag_zip_file,
'&SRDCSPOOLNAME..htm' srdc_html_file,
(select value from v$diag_info where name = 'Default Trace File') as hanganalyze_trc_file
from dual;
-- close the trace file that will be moved to zip file
oradebug close_trace
set term on echo off;
prompt
prompt =============================================
prompt To collect Active Session History data for diagnostic,
prompt Please provide the specific time period during which the issue occurred (YYYY-MM-DD HH24:MI:SS),
prompt If not provided, the data within the last hour will be collected:
prompt
define sample_time_from = '&sample_time_from';
define sample_time_to = '&sample_time_to';
prompt
--
var sample_time_from varchar2(40);
var sample_time_to varchar2(40);
var prev_hour_time varchar2(40);
var curr_hour_time varchar2(40);
var ash_tbl_name char(128);
var c_time_fmt varchar2(40);
var csv_record_count number;
var ash_csv_file varchar2(128);
var hanganalyze_trc_file varchar2(256);
var srdc_html_file varchar2(128);
exec :sample_time_from := '&&sample_time_from';
exec :sample_time_to := '&&sample_time_to';
exec :ash_tbl_name := 'GV$ACTIVE_SESSION_HISTORY';
exec :c_time_fmt := 'YYYY-MM-DD HH24:MI:SS';
exec :ash_csv_file := '&&ash_csv_file';
exec :hanganalyze_trc_file := '&&hanganalyze_trc_file';
exec :srdc_html_file := '&&srdc_html_file';
declare
v_curr_hour date := trunc(sysdate, 'mi');
v_prev_hour date := trunc(sysdate - interval '1' hour, 'mi');
v_from_date date := null;
v_to_date date := null;
begin
--
begin
if :sample_time_from is null then
v_from_date := v_prev_hour;
else
v_from_date := to_date(:sample_time_from, :c_time_fmt);
end if;
exception
when others then
v_from_date := v_prev_hour;
end;
--
begin
if :sample_time_to is null then
v_to_date := v_from_date + interval '1' hour;
else
v_to_date := to_date(:sample_time_to, :c_time_fmt);
end if;
exception
when others then
v_to_date := v_from_date + interval '1' hour;
end;
--
:sample_time_from := to_char(v_from_date, :c_time_fmt);
:sample_time_to := to_char(v_to_date, :c_time_fmt);
:prev_hour_time := to_char(v_prev_hour, :c_time_fmt);
:curr_hour_time := to_char(v_curr_hour, :c_time_fmt);
--
if
not (v_from_date >= v_prev_hour and v_from_date = v_prev_hour and v_to_date 0 ) loop
R_COUNT := R_COUNT + 1;
L_SEPARATOR := '';
for I in 1 .. L_COLCNT loop
if L_DESCTBL(I).COL_TYPE = 2 then -- number
DBMS_SQL.COLUMN_VALUE( L_THECURSOR, I, L_COLUMNVALUE_NUMBER );
DBMS_OUTPUT.PUT(L_SEPARATOR || L_COLUMNVALUE_NUMBER);
elsif L_DESCTBL(I).COL_TYPE in (12, 180, 181) then -- date, timestamp
DBMS_SQL.COLUMN_VALUE( L_THECURSOR, I, L_COLUMNVALUE_DATE );
DBMS_OUTPUT.PUT(L_SEPARATOR || '"' || to_char(L_COLUMNVALUE_DATE, DT_24HMS_FMT) || '"');
else -- others, consider as varchar
DBMS_SQL.COLUMN_VALUE( L_THECURSOR, I, L_COLUMNVALUE_CHAR );
DBMS_OUTPUT.PUT(L_SEPARATOR || '"' || trim(both ' ' from replace(L_COLUMNVALUE_CHAR,'"','""')) || '"');
end if;
L_SEPARATOR := ',';
end loop;
DBMS_OUTPUT.PUT_LINE('');
end loop;
--CLOSE CURSOR
DBMS_SQL.CLOSE_CURSOR(L_THECURSOR);
return R_COUNT;
exception
when others then
DBMS_OUTPUT.PUT_LINE('Error code ' || SQLCODE || ': ' || SQLERRM);
raise;
end qry2csv;
begin
--
v_sql := ' select * ' || chr(10) ||
' from ' || trim(:ash_tbl_name) || chr(10) ||
' where SAMPLE_TIME between to_timestamp(''' || trim(:sample_time_from) || ''', ''' || trim(:c_time_fmt) || ''')' || chr(10) ||
' and to_timestamp(''' || trim(:sample_time_to) || ''', ''' || trim(:c_time_fmt) || ''')' || chr(10) ||
' order by ';
if trim(:ash_tbl_name) = 'DBA_HIST_ACTIVE_SESS_HISTORY' THEN
v_sql := v_sql || 'INSTANCE_NUMBER';
else
v_sql := v_sql || 'INST_ID';
end if;
v_sql := v_sql || ', SAMPLE_ID';
--
:csv_record_count := qry2csv(v_sql);
end;
/
spool off
-- spool
set term off echo off;
spool &&ash_csv_out_filename
declare
begin
DBMS_OUTPUT.PUT_LINE('=============================================');
DBMS_OUTPUT.PUT_LINE('SAMPLE_TIME_FROM: ' || :sample_time_from);
DBMS_OUTPUT.PUT_LINE('SAMPLE_TIME_TO : ' || :sample_time_to);
DBMS_OUTPUT.PUT_LINE('CURR_HOUR_TIME : ' || :curr_hour_time);
DBMS_OUTPUT.PUT_LINE('PREV_HOUR_TIME : ' || :prev_hour_time);
DBMS_OUTPUT.PUT_LINE('ASH_TBL_NAME : ' || :ash_tbl_name);
DBMS_OUTPUT.PUT_LINE('CSV_FILE_NAME : ' || :ash_csv_file);
DBMS_OUTPUT.PUT_LINE('CSV_RECORD_COUNT: ' || :csv_record_count);
DBMS_OUTPUT.PUT_LINE('=============================================');
end;
/
spool off
-- #########################
-- post-process
--
set term on echo off;
declare
begin
DBMS_OUTPUT.PUT_LINE('=============================================');
DBMS_OUTPUT.PUT_LINE('SRDC_DIAG_HTML : ' || :srdc_html_file);
DBMS_OUTPUT.PUT_LINE('HANG_ANALYZE : ' || :hanganalyze_trc_file);
DBMS_OUTPUT.PUT_LINE('=============================================');
DBMS_OUTPUT.PUT_LINE('SAMPLE_TIME_FROM : ' || :sample_time_from);
DBMS_OUTPUT.PUT_LINE('SAMPLE_TIME_TO : ' || :sample_time_to);
DBMS_OUTPUT.PUT_LINE('CURR_HOUR_TIME : ' || :curr_hour_time);
DBMS_OUTPUT.PUT_LINE('PREV_HOUR_TIME : ' || :prev_hour_time);
DBMS_OUTPUT.PUT_LINE('ASH_TBL_NAME : ' || :ash_tbl_name);
DBMS_OUTPUT.PUT_LINE('CSV_FILE_NAME : ' || :ash_csv_file);
DBMS_OUTPUT.PUT_LINE('CSV_RECORD_COUNT : ' || :csv_record_count);
end;
/
--
-- ########################################
-- Compress output files into a zip file
-- ########################################
--
-- 1. SRDC_RACDIAG_ORCL19800_20230926_191024.htm
-- 2. hanganalyze
-- 3. ash_csv_orcl1980_20230926_191024.csv
-- 4. ash_csv_orcl1980_20230926_191024.out
--
set term on echo off;
Prompt
Prompt =============================================
Prompt Moving diagnostic files to &&diag_zip_file
Prompt
HOS zip -m &&diag_zip_file &&srdc_html_file
HOS zip -jm &&diag_zip_file &&hanganalyze_trc_file
HOS zip -m &&diag_zip_file &&ash_csv_file
HOS zip -m &&diag_zip_file &&ash_csv_out_filename
-- reset
undefine sample_time_from sample_time_to
set pagesize 14 embedded off
set lines 80
set term on
set feedback on
set trimspool off
set heading on
set colsep ' '
Sample Output
TIME
-----------------------------
SEP-21-2022 08:04:15
1 row selected.
INST_ID INSTANCE_NAME HOST_NAME VERSION STATUS STARTUP_TIME
------- ---------------- -------------------- ----------------- ------------ --------------------
1 19.0.0.0.0 OPEN SEP-07-2022 06:52:44
2 19.0.0.0.0 OPEN JUN-15-2022 14:36:02
2 rows selected.
SQL>
SQL> -- Taking Hang Analyze dumps
SQL> -- This may take a little while...
SQL> oradebug setmypid
Statement processed.
SQL> oradebug unlimit
Statement processed.
SQL> oradebug -g all hanganalyze 3
Hang Analysis in /diag/rdbms///trace/orcl1_diag_21328.trc
etc...