Previous Topic: 10024 Stop Data Base Command

Next Topic: 10026 Stop DB2 Command

10025 Stop Trace Command


FILE:  DB2 System Activity File
SAS FILE NAME:  DETAIL.DB2DSY01
SOURCE LOCATION:  sharedprefix.MICS.SOURCE(DB2DYEXC)

SEVERITY:  Warning              (Severity='W')
MANAGEMENT AREA:  Performance   (MGMTAREA='Performance')

PURPOSE:   This exception notes that a Stop Trace command was
issued.

RATIONALE:  The trace facility consumes system resources and
impacts response.  It is important to note which users are
activating this feature and for what period of time.

DEFINITION:  This exception is noted when the DSYSPTRC flag
is non-zero.

EXCEPTION STATEMENTS:    The SAS statements identifying the
exception situation and describing the condition are stored
in the source member named in SOURCE LOCATION and are
described below:


/* ***************************************** */
/* EXCEPTION NUMBER:  10025                  */
/* TITLE:  STOP TRACE COMMAND                */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYSPTRC GT 0 THEN DO;
  EXCCODE='10025';
  SEVERITY='W';
  MGMTAREA='PERFORMANCE';
  EXCDESC1='STOP TRACE COMMAND';
  EXCDESC2='COUNT = '                  ||
            PUT(DSYSPTRC,6.)
            ;
  LINK HIT;
  END;