Previous Topic: 5.12.3 SRL_UM Usage ConsiderationsNext Topic: 5.13 SRL Storage Reliability (SRLSTR) File


5.12.4 SRL_UM Retrieval Examples


This section presents typical SRL_UM retrieval examples.

1.  Print a list showing the problem program modules or
    routines which encountered failures and the frequency of
    failures over the last month.

    PROC FREQ DATA=&PSRLM..SRL_UM01;
    TABLES MODULE;

2.  Print a list of failures that occurred yesterday for a
    specific module that you are tracking and the associated
    job name, program name, CSECT and System Completion code.

    DATA;
    SET &PSRLX..SRL_UM01;
    IF MODULE EQ: 'MYPROGRM';
    PROC PRINT;
    VAR CPUSER SYSID SSMJOB SSMABPGM SSMCSECT
        SSMSCMPC;