Previous Topic: 5.2.4.9.3 HVTHHA Usage ConsiderationsNext Topic: 5.2.4.10 Hydra Cluster Summary File (HVTHCA)


5.2.4.9.4 HVTHHA 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.  Using the most recent DAYS timespan HVTHHA file, display
    a comparison between the amount of data and volumes in
    cache and the amount of data and volumes on physical
    tape.
 
    DATA;
    SET &pIVTd..HVTHHA01;
    DATE=DATEPART(ENDTS) ;
    FORMAT DATE DATE8. ;
    * ;
    PROC PRINT LABEL ;
      PAGEBY HVTCLID ;
      BY HVTCLID DATE ;
    ID HOUR ;
    VAR HHAAVDRC HHAAVVVC HHAAVMAD HHAAVALV
        HHAAVBPV HHAAVPVC;
    TITLE1
    'Data in Cache Compared to Data on Physical Tape' ;
    RUN ;