Version 8.2.3
 —  Utilities  —

DEVENTLOG: Display Adabas Event Log

The DEVENTLOG function allows you to display all entries in the Adabas event log (currently storing only response code 145, ADARSP145, events).

The Adabas event log is a wraparound log in memory that is used to log each response code 145 (ADARSP145) event. The INFOBUFFERSIZE ADARUN parameter identifies the size of the Adabas event log. Each entry in the event log is currently 128 bytes, although this may change in later Adabas releases. When the Adabas event log fills up, the oldest entries in the log are overwritten.

graphics/util_adadbs_deventlog.png

This document describes the syntax, processing, and parameters of the ADADBS DEVENTLOG function.


Optional Parameters

NOUSERABEND: Termination without Abend

When an error is encountered while the function is running, the utility prints an error message and terminates with user abend 34 (with a dump) or user abend 35 (without a dump). When NOUSERABEND is specified, it must be specified as the first parameter (before all other parameters) for the utility function.

If NOUSERABEND is specified, the utility will not abend after printing the error message. Instead, the message "utility TERMINATED DUE TO ERROR CONDITION" is displayed and the utility terminates with condition code 20.

NUCID

Use the optional NUCID parameter to specify the ID of a specific Adabas nucleus for which the Adabas event log should be displayed. This parameter is especially useful in cluster environments. If no specific database ID is specified in a cluster environment, the Adabas event logs of all the databases in the cluster are displayed.

TEST: Test Syntax

The TEST parameter tests the operation syntax without actually performing the operation. Note that the validity of values and variables cannot be tested: only the syntax of the specified parameters can be tested. See Syntax Checking with the TEST Parameter for more information about using the TEST parameter in ADADBS functions.

Top of page

Examples

In the following example, the Adabas event log for Adabas nucleus 12 is displayed.

ADADBS DEVENTLOG NUCID=12

In the following example, the individual Adabas event log is displayed, or in cluster environments, all of the Adabas event logs for every database in the cluster is displayed.

ADADBS DEVENTLOG

Top of page