Previous Topic: 10028 Allocation Deadlock Failure

Next Topic: 10030 Error Return from GETMAIN/FREEMAIN

10029 Invalid Resource Failure


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

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

PURPOSE:   This exception warns that a request for allocation
of a plan that was unknown to DB2.

RATIONALE:  It is important to determine why the plan was not
available to DB2.

DEFINITION:   This exception is noted when the DSYINVAL 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:  10029                  */
/* TITLE:  INVALID RESOURCE FAILURE          */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYINVAL GT 0 THEN DO;
  EXCCODE='10029';
  SEVERITY='W';
  MGMTAREA='PERFORMANCE';
  EXCDESC1='INVALID RESOURCE FAILURE';
  EXCDESC2='COUNT = '                  ||
            PUT(DSYINVAL,6.)
            ;
  LINK HIT;
  END;