Previous Topic: 10042 Instrumentation Buffer Error

Next Topic: 10044 Instrumentation Buffer Error

10043 Instrumentation Buffer Error


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

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

PURPOSE:  This exception warns that a buffer error occurred
while DB2 was attempting to write an instrumentation record.

RATIONALE:   Buffer errors indicate that the file created by
SMF, GTF, RES, or SRV may be defective.

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