Batch Operation

You can initiate batch runs of DUMPANALYZER from Work Flow Language (WFL) jobs. The output defaults to the printer.

The following paragraphs outline two methods that you can use to run DUMPANALYZER from a Work Flow Language (WFL) job.

Method 1

In this method, DUMPANALYZER commands are provided in a local data specification in the WFL job. The following is an example of such a WFL job:

BEGIN JOB ANALYSIS;
RUN SYSTEM/DUMPANALYZER;
DATA OPTIONS
SUMMARY
LOCKS
DEADLOCK
IO UINFO NAMES ALL
OPT
MEM
TRACE
BOXINFO
MODE + ALL
STACK 123
NAMES
AREAS AVAIL CODE LINKS
DC
?
END JOB

Method 2

In this method, the WFL job directs DUMPANALYZER to read commands from a disk file. In the following example, the WFL job directs DUMPANALYZER to read commands from the disk file titled DPA/INPUT:

BEGIN JOB ANALYSIS;
RUN SYSTEM/DUMPANALYZER;
FILE OPTIONS(KIND=DISK,TITLE=DPA/INPUT,DEPENDENTSPECS=TRUE);
FILE TAPEIN(KIND=DISK,TITLE=DP/062593/093731/BAD_LIBRARY_LINK);
END JOB