Previous Topic: 10002 Instrumentation Record Not Accepted

Next Topic: 10004 Record Unsuccessfully Written

10003 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 loss
of DB2 system activity and accounting data.

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