Previous Topic: 10098 Instrumentation Record Not Accepted

Next Topic: 10100 Instrumentation Writer Failure

10099 Instrumentation Writer Failure


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

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

PURPOSE:   This exception warns that the instrumentation
facility selected failed while processing a DB2 request.

RATIONALE:  Instrumentation facility failure results in the
loss of DB2 system activity and accounting data.

DEFINITION:  This exception is noted when the DSYWFAI2 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:  10099                  */
/* TITLE:  INSTRUMENTATION WRITER FAILURE    */
/* FILE:  DB2DSY01                           */
/* ***************************************** */
IF DSYWFAI2 GT 0 THEN DO;
 EXCCODE='10099';
 SEVERITY='W';
 MGMTAREA='SECURITY';
 EXCDESC1='INSTRUMENTATION WRITER FAILURE';
 EXCDESC2='DESTINATION = '            ||
           PUT(DSYIDES2,$4.)          ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSYWFAI2,6.)
           ;
 LINK HIT;
 END;