Previous Topic: 10009 Data Base IFCID Record Not Written

Next Topic: 10011 Data Base IFCID Buffer Not Available

10010 Data Base IFCID Record Not Desired


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 the DB2 request to write
an IFCID record is not processable because a record was not
desired.

RATIONALE:

DEFINITION:  This exception is noted when the DSYRCNDD 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:  10010                  */
/* TITLE:  IFCID RECORD NOT DESIRED DATA BASE */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYRCNDD GT 0 THEN DO;
  EXCCODE='10010';
  SEVERITY='W';
  MGMTAREA='SECURITY';
  EXCDESC1='IFCID RECORD NOT DESIRED DATA BASE';
  EXCDESC2='DESTINATION = '            ||
           ' DATA BASE'                ||
           '   '                       ||
           'RECORD COUNT = '           ||
            PUT(DSYRCNDD,6.)
            ;
  LINK HIT;
  END;