Previous Topic: 5.2.4.2.3 HVTVAP Usage ConsiderationsNext Topic: 5.2.4.3 Hydra Hnode Cache Activity File (HVTHHC)


5.2.4.2.4 HVTVAP 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 HVTVAP file, display
    channel I/O through each Host Bus Adapter (HBA), per
    HOUR.  Observe the balance of I/O through each HBA.  For
    finer 15-minute granularity, change HOUR to ENDTS and
    point to the DETAIL HVTVAP file.
 
    PROC TABULATE DATA=&pHVTd.HVTVAP01;
      BY HVTCLID;
      CLASS HVTHBAID HOUR ;
      VAR VAPCRW ;
      TABLE HOUR, HVTHBAID*VAPCRW /
            RTS=20;
      TITLE 'HBA I/O Distribution';
    RUN;