Previous Topic: 10045 Instrumentation Buffer Error

Next Topic: 10047 Instrumentation Not Active Error

10046 Instrumentation Not Active Error


FILE:  DB2 System Activity File
SAS FILE NAME:  DETAIL.DB2DSY01
SOURCE LOCATION:  sharedprefix.MICS.SOURCE(DB2DYEXC)

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

PURPOSE:    This exception warns that the specified
instrumentation facility was not active when DB2 attempted to
write a record.

RATIONALE:   When the specified instrumentation facility
destination is not active, DB2 system activity and billing
information is not captured.

DEFINITION:   This exception is noted when the DSYNAER2 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:  10046                  */
/* TITLE:  INSTRUMENTATION NOT ACTIVE ERROR  */
/* FILE:  DB2DSY01                           */
/* ***************************************** */
IF DSYNAER2 GT 0 THEN DO;
 EXCCODE='10046';
 SEVERITY='W';
 MGMTAREA='SECURITY';
 EXCDESC1='INSTRUMENTATION NOT ACTIVE ERROR';
 EXCDESC2='DESTINATION = '            ||
           PUT(DSYIDES2,$4.)          ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSYNAER2,6.)
           ;
 LINK HIT;
 END;