Previous Topic: 5.2.2.2.3 IVTVCL Usage ConsiderationsNext Topic: 5.2.2.3 VTC Statistics Detail File (IVTVTC)


5.2.2.2.4 IVTVCL 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 IVTVCL file, display
    the total number of virtual volumes accessed in the DASD
    cache of the UI and secondary VTSs.

    Break the total down by category:  Fast ready, recall,
    and cache-hit.  Show the average overall virtual mount
    time as well as the mount times for the various
    categories.

    DATA;
    SET &pIVTd..IVTVCL01;
    DATE=DATEPART(ENDTS) ;
    FORMAT DATE DATE8. ;
    * ;
    PROC PRINT LABEL ;
      PAGEBY IVTVLS ;
      BY IVTCMPID IVTTYPE IVTVLS DATE ;
    ID HOUR ;
    VAR VCLTVM VCLAVVMT VCLVFRM VCLAVFMT VCLVCHM VCLAVHMT
    VCLVRM VCLAVRMT ;
    TITLE1 'Daily Composite Virtual Mounts/Times by HOUR' ;
    RUN ;