4. EXCEPTIONS › 4.3 Exception Descriptions › 10033 Short On Storage Abend
10033 Short On Storage Abend
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 an abend due to a
shortage of storage was detected.
RATIONALE: Storage shortages impact the performance of DB2.
Abends impact the productivity and availability of
applications systems.
DEFINITION: This exception is noted when the DSYSTOSA 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: 10033 */
/* TITLE: SHORTAGE OF STORAGE ABENDS */
/* FILE: DB2DSY01 */
/* ***************************************** */
IF DSYSTOSA GT 0 THEN DO;
EXCCODE='10033';
SEVERITY='W';
MGMTAREA='PERFORMANCE';
EXCDESC1='SHORTAGE OF STORAGE ABENDS';
EXCDESC2='COUNT = ' ||
PUT(DSYSTOSA,6.)
;
LINK HIT;
END;