Previous Topic: 10101 Instrumentation Writer Failure

Next Topic: 10103 Record Unsuccessfully Written

10102 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 selected
instrumentation facility 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 DSYWFAI5 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:  10102                  */
/* TITLE:  INSTRUMENTATION WRITER FAILURE    */
/* FILE:  DB2DSY01                           */
/* ***************************************** */
IF DSYWFAI5 GT 0 THEN DO;
 EXCCODE='10102';
 SEVERITY='W';
 MGMTAREA='SECURITY';
 EXCDESC1='INSTRUMENTATION WRITER FAILURE';
 EXCDESC2='DESTINATION = '            ||
           PUT(DSYIDES5,$4.)          ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSYWFAI5,6.)
           ;
 LINK HIT;
 END;