Previous Topic: 5.2.4.7.3 HVTHGP Usage ConsiderationsNext Topic: 5.2.4.8 Hydra Hnode G-Use Pool Media Activity File (HVTHGM)


5.2.4.7.4 HVTHGP 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 HVTHGP file, display
    the data read and written to the general use pools,
    including the number of logical volumes in each pool.
 
    PROC SUMMARY DATA=DAYS.HVTHGP01 NWAY;
      CLASS HVTCLID HVTPOOL;
      VAR HGPDRP HGPDWP HGPAVALV;
      OUTPUT OUT=STATS SUM=HGPDRP HGPDWP MEAN=HGPAVALV;
    RUN;
    PROC PRINT DATA=STATS LABEL ;
      VAR HVTCLID HVTPOOL HGPDRP HGPDWP HGPAVALV;
    TITLE1
    'Daily General Use Pool Statistics' ;
    RUN ;