Previous Topic: 06101: IMS Application AbendNext Topic: 06103: IMS Data Base Close


06102: IMS Data Base Open

    FILE:            IMS System Incident
    SAS FILE NAME:   DETAIL.IMSINC01
    SOURCE LOCATION: sharedprefix.MICS.SOURCE(DYIMSEXC)

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

    PURPOSE:  Identifies an OS open of an IMS data base.

    RATIONALE:  Data Base Opens can lead to sporadic
performance problems as the requestor must wait for the OS
open process to complete.  Ideally, a data base should be
opened only once per execution of the IMS Control Region.
Frequent Data Base Opens and Closes may indicate
insufficiency in the DMB pool size.

    DEFINITION:  This exception is detected when IMS detects
a Data Base Open.

    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:

*
**  06102
**  IMS DATA BASE OPEN
*;
IF INCCODE = '20'X
 THEN DO;
  EXCCODE='06102'; SEVERITY='W'; MGMTAREA='PERFORMANCE';
  EXCDESC1= INCTEXT;
  EXCDESC2= 'DB=' || DATABASE ||
        'PGM=' || PSBNAME;
  LINK HIT;
END;

    THRESHOLD MODIFICATION:  None required