Previous Topic: 4.3 Exception Descriptions

Next Topic: 10001 Instrumentation Not Active Error

10000 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, RES, GTF, or SRV may be defective.

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