Previous Topic: 10019 End Of Task Abend

Next Topic: 10021 Start Data Base Command

10020 End Of Memory


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

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

PURPOSE:  This exception warns that a non_DB2 address space
was deleted by the operating system while it was connected to 
DB2.

RATIONALE:  It is important that application program failures
be noted because of the effect on application productivity.

DEFINITION:  This exception is noted when the DSYEOMEM 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:  10020                  */
/* TITLE:  END OF MEMORY                     */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYEOMEM GT 0 THEN DO;
  EXCCODE='10020';
  SEVERITY='W';
  MGMTAREA='PRODUCTIVITY';
  EXCDESC1='END OF MEMORY';
  EXCDESC2='COUNT = '                  ||
            PUT(DSYEOMEM,6.)
            ;
  LINK HIT;
  END;