4. EXCEPTIONS › 4.3 Exception Descriptions › 10042 Instrumentation Buffer Error
10042 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 DSYBFER2 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: 10042 */
/* TITLE: INSTRUMENTATION BUFFER ERROR */
/* FILE: DB2DSY01 */
/* ***************************************** */
IF DSYBFER2 GT 0 THEN DO;
EXCCODE='10042';
SEVERITY='W';
MGMTAREA='SECURITY';
EXCDESC1='INSTRUMENTATION BUFFER ERROR';
EXCDESC2='DESTINATION = ' ||
PUT(DSYIDES2,$4.) ||
' ' ||
'RECORD COUNT = ' ||
PUT(DSYBFER2,6.)
;
LINK HIT;
END;