Previous Topic: 10097 Instrumentation Record Not Accepted

Next Topic: 10099 Instrumentation Writer Failure

10098 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 a specified instrumentation facility destination was not
accepted.

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

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