Previous Topic: 02015: Insufficient Pageable Frames

Next Topic: 02017: CSA Fixed Frames Exceeds Max

02016: SQA Fixed Frames Exceeds Max



FILE: Paging Activity File
SAS FILE NAME: DAYS.SCPPAG01
SOURCE LOCATION: prefix.MICS.USER.SOURCE(DYRMFEXC)

SEVERITY: Critical             (SEVERITY='C')
MANAGEMENT AREA: Performance   (MGMTAREA='PERFORMANCE')

PURPOSE:  Identifies type of excess fixed frames.

RATIONALE:  When real memory shortages occur, they often
result from excess fixed frames.  This exception identifies
when the number of fixed frames in SQA is the cause of real
memory shortages.

DEFINITION:  This exception is raised when the number of
frames of real memory fixed in SQA exceeds the installation-
defined maximum.

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:

**  02016 SQA FIXED FRAMES EXCEEDS MAX
*;
IF PAGMXQ GT fixed-frames
 THEN DO;
  EXCCODE='02016'; SEVERITY='C'; MGMTAREA='PERFORMANCE';
  EXCDESC1='SQA FIXED FRAMES EXCEEDS MAX';
  EXCDESC2='FIXED FRAMES=' !! PUT(PAGMXQ,6.);
  LINK HIT;
END;

THRESHOLD MODIFICATION:  The user should modify the
fixed-frames value according to the following convention:

fixed-frames - The maximum number of fixed frames is
specified.  A threshold frame count of 250 would appear as:

PAGMXQ GT 250