This was not a good idea because the cursors opened by the Application Engine program are still open when the AE program completed, and the process updates its status from 7 (processing) to 9 (success) or 3 (error). This causes the unset_trace trigger to fire and disable SQL Trace. Consequently, the STAT lines for these cursors are never emitted to the trace file. The STAT lines contain the execution plans and a wealth of other information.
Updated 26.4.2021: Instead, I have a new version of the trace trigger (trace_trigger.sql can be downloaded from my Github repository of PeopleSoft scripts).
spool trace_trigger
rem (c)Go-Faster Consultancy Ltd. 2008
rem 1.5.2008 - moved logic to disable trace from unset_trace trigger into main trigger
rem because cursors in AE not shut until after status is changed away from processing
ROLLBACK;
----------------------------------------------------------------
REM explicit grants by sys required on following privileges
----------------------------------------------------------------
GRANT ALTER SESSION TO sysadm;
GRANT EXECUTE ON sys.dbms_monitor TO sysadm;
GRANT EXECUTE ON sys.dbms_application_info TO SYSADM;
----------------------------------------------------------------
CREATE OR REPLACE TRIGGER sysadm.set_trace
BEFORE UPDATE OF runstatus ON sysadm.psprcsrqst
FOR EACH ROW
WHEN (new.runstatus = 7 AND old.runstatus != 7 AND new.prcstype != 'PSJob')(1)
DECLARE
l_waits BOOLEAN := TRUE;(2)
l_binds BOOLEAN := FALSE;
BEGIN
--set module and action whether we are tracing or not
sys.dbms_application_info.set_module((3)
module_name => :new.prcsname,
action_name => 'PI='||:new.prcsinstance
);
IF ( :new.runcntlid LIKE 'TRACEME%'(5)
----------------------------------------------------------------
--code conditions for enabling trace here instead of when clause
----------------------------------------------------------------
-- OR ( SUBSTR(:new.prcsname,1,3) = 'TL_'
-- AND :new.rqstdttm <= TO_DATE('20080509','YYYYMMDD'))
----------------------------------------------------------------
) THEN
--if we are going to trace, then set tracefile identifier
EXECUTE IMMEDIATE 'ALTER SESSION SET TRACEFILE_IDENTIFIER(4) = '''||
TRANSLATE(:new.prcstype ,' -','__')||'_'||
TRANSLATE(:new.prcsname ,' -','__')||'_'||
:new.prcsinstance||'_'||
TRANSLATE(:new.servernamerun,' -','__')||
'''';
EXECUTE IMMEDIATE 'ALTER SESSION SET TIMED_STATISTICS = TRUE';
EXECUTE IMMEDIATE 'ALTER SESSION SET MAX_DUMP_FILE_SIZE = 2097152'; --1Gb
EXECUTE IMMEDIATE 'ALTER SESSION SET STATISTICS_LEVEL=ALL';
----------------------------------------------------------------
--logic to determine whether you want to trace binds also
----------------------------------------------------------------
IF :new.runcntlid LIKE 'TRACE%BIND%' THEN(6)
l_binds := TRUE;
END IF;
----------------------------------------------------------------
sys.dbms_monitor.session_trace_enable(waits=>TRUE,binds=>l_binds);(7)
-- EXECUTE IMMEDIATE 'ALTER SESSION SET EVENTS ''10046 TRACE NAME CONTEXT FOREVER, LEVEL 12''';
ELSIF :new.prcstype = 'Application Engine' THEN(8)
--explicitly disable trace if application server process
sys.dbms_monitor.session_trace_disable;
--reset max dump file size AFTER disabling trace
EXECUTE IMMEDIATE 'ALTER SESSION SET MAX_DUMP_FILE_SIZE = 5M';
--if not tracing, then reset tracefile identifier
EXECUTE IMMEDIATE 'ALTER SESSION SET TRACEFILE_IDENTIFIER(4) = ''''';
END IF;
EXCEPTION WHEN OTHERS THEN NULL;
END;
/
show errors
DROP TRIGGER sysadm.unset_trace;
rem test that the trigger fires by updating something
UPDATE sysadm.psprcsrqst new
SET runstatus = 7
WHERE runstatus != 7
AND new.prcstype != 'PSJob'
AND rownum < 1
--AND 1=2
;
ROLLBACK;
spool off
1. The trigger fires when any process begins. Previously I used logic in the WHEN clause to restrict when it fired.2. Wait events are collected in the trace by default.
3. Irrespective of whether trace is enabled, the trigger also calls the dbms_application_info package to set the module name to the PeopleSoft Process Name, and action to the PeopleSoft Process Instance number.
4. Also irrespective of whether trace is enabled, the trace file identifier is set so that the trace file name includes the Process Type, Process Name, Process Instance Number, and the name of the Process Scheduler.
(Updated 6.2.2009) Previous versions of this trigger set tracefile identifier irrespective of whether trace was enabled. Unfortunately, this causes a small trace file to be generated for every process.5. Logic in the trigger determines whether a SQL Trace will be enabled. The supplied version of the trigger traces processes whose run controls begin with 'TRACE'
6. Additional logic has been added to also enable bind variables to be captured if the run control begins with 'TRACEBIND'.
7. The dbms_monitor package is new in Oracle 10g and is the only officially supported way to enable extended trace. If using the trigger on earlier versions of the database, it should be replaced with the commented code to set event 10046.
8. If it is not required to SQL Trace a process, and the process is an Application Engine program, then trace is explicitly disabled. Thus, if a PSAESRV process has traced an AE program, trace is disabled when it next handles a request. This has the advantage that the stat lines for the cursors are written to the trace file. However, the disadvantage is that the process continues to trace between requests, and the time between requests is reported as 'SQL*Net message from client'.
No comments :
Post a Comment