Previous Topic: 5.9.3 SRLSSD Usage ConsiderationsNext Topic: 5.10 User Software Diagnostic (SRL_UD) File


5.9.4 SRLSSD Retrieval Examples


This section presents typical SRLSSD retrieval examples.

1.  Print a list showing the jobs that abended yesterday and
    the number of times they abended and percentage versus
    the other jobs that abended.  This can help identify
    those jobs that are failing more often than others, and
    steps may be taken to correct the situation.

    PROC FREQ DATA=&PSRLX..SRLSSD01;
    TABLES SSDJOB;

2.  Print a list of all jobs beginning with PROD that abended
    yesterday and their system completion codes.

    DATA;
    SET &PSRLX..SRLSSD01;
    IF SSDJOB EQ: 'PROD';
    PROC PRINT; VAR SYSID SSDJOB SSDSCMPC;