Previous Topic: 10072 NO. Lock Escalations to Exclusive Mode

Next Topic: 10074 Prefetch Disabled No Read Engine Buffer 0

10073 Maximum Number of Page Locks Held


FILE:  DB2 Data Base Activity File
SAS FILE NAME:  DETAIL.DB2DSD01
SOURCE LOCATION:  prefix.MICS.SOURCE(DB2DYEXC)

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

PURPOSE:  This exception provides the maximum number of page
locks held by an application for the system.

RATIONALE:  This exception tracks page locks held by the
system.

DEFINITION:  This exception is noted when the DSDMXPL 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:  10073                       */
/* TITLE:  MAXIMUM PAGE LOCKS HELD                */
/* FILE:  DB2DSD01                                */
/* ************************************************/

IF DSDMXPL GT 0 THEN DO;
 EXCCODE='10073';
 SEVERITY='W';
 MGMTAREA='PERFORMANCE';
 EXCDESC1='MAXIMUM PAGE LOCKS HELD '  ||
          'COUNT = '                  ||
           PUT(DSDMXPL,6.)
           ;
 LINK HIT;
 END;