Previous Topic: 5.2.4.3 VCADCS Usage ConsiderationsNext Topic: 5.3 DFHSM Inventory Primary Information Area Files


5.2.4.4 VCADCS Retrieval Examples



In the examples, a SAS macro variable is used to specify the
DDname part of the CA MICS file name. These macro variables
are a standard part of CA MICS and are available for all
files. The macro variable name has the form &diiit, where d
is the database identifier, iii is the information area
name, and t is the timespan.  For the examples, a database
identifier of P is used.  The identifier is installation
dependent, so you should find out what the identifiers are at
your installation.


1.  List the number of data sets and amount of space
    allocated under different Data Class Names.

    %LET BY=STORDATC;
    %LET BREAK=STORDATC;
    PROC SORT DATA=&PVCAD..VCADCS01 OUT=FILE1;
    BY &BY;
    DATA;
    SET FILE1;
    %DCSSUM;
    RUN;
    PROC PRINT;
    VAR STORDATC DAADSNNO DAAALLSP;
    RUN;