Previous Topic: 10031 Short On Storage Contractions

Next Topic: 10033 Short On Storage Abend

10032 Short On Storage Detected


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 storage shortage
situation was detected.

RATIONALE:  Storage shortages impact the performance of DB2.

DEFINITION:   This exception is noted when the DSYSTOSH 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:  10032                  */
/* TITLE:  SHORTAGE OF STORAGE               */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYSTOSH GT 0 THEN DO;
  EXCCODE='10032';
  SEVERITY='W';
  MGMTAREA='PERFORMANCE';
  EXCDESC1='SHORTAGE OF STORAGE';
  EXCDESC2='COUNT = '                  ||
            PUT(DSYSTOSH,6.)
            ;
  LINK HIT;
  END;