Previous Topic: 10001 Instrumentation Not Active Error

Next Topic: 10003 Instrumentation Writer Failure

10002 Instrumentation Record Not Accepted


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 a record prepared by DB2
for the specified instrumentation facility destination was
not accepted.

RATIONALE:  This exception indicates an internal error in DB2
which prepared an SMF, RES, GTF, or SRV record with an
incorrect format.  The data are being lost.

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