Previous Topic: 10006 System IFCID Record Not Desired

Next Topic: 10008 System IFCID Collection Failure

10007 System IFCID Buffer Not Available


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

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

PURPOSE:  This exception warns that the DB2 request to write
an IFCID record is not processable due to a lack of buffers.

RATIONALE:

DEFINITION:  This exception is noted when the DSYBNAS 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:  10007                  */
/* TITLE:  IFCID BUFFER NOT AVAILABLE SYSTEM */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYBNAS GT 0 THEN DO;
  EXCCODE='10007';
  SEVERITY='W';
  MGMTAREA='SECURITY';
  EXCDESC1='IFCID BUFFER NOT AVAILABLE SYSTEM';
  EXCDESC2='DESTINATION = '            ||
           ' SYSTEM'                   ||
           '   '                       ||
           'COUNT = '                  ||
            PUT(DSYBNAS,6.)
            ;
  LINK HIT;
  END;