Previous Topic: 5.2.2.7.3 IVTTCA Usage ConsiderationsNext Topic: 5.2.2.8 VTS Import/Export File (IVTIEX)


5.2.2.7.4 IVTTCA 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 IVTTCA file, display
    the quantity of physical mounts and the counts for each
    robotic accessor.  Display the total and average physical
    mount time and duration.  Finally, display the number of
    available physical drives and the maximum number
    concurrently mounted during the hour.

    Generate a single page for each IBM Self Managed 34xx
    library assigned to each distributed VTS (UI, secondary,
    and standalone).

    DATA;
    SET &pIVTd..IVTTCA01;
    DATE=DATEPART(ENDTS) ;
    FORMAT DATE DATE8. ;
    * ;
    PROC PRINT LABEL ;
    PAGEBY IVTVLS ;
      BY IVTCMPID IVTTYPE IVTVLS DATE ;
    ID HOUR ;
    VAR TCATPM TCAACMA TCAACMB TCAPMTM TCAAVPMT TCAAVPMD
    TCAPDI TCAMXPCM ;
    TITLE1 'Daily Tape Library Statistics by HOUR' ;
    RUN ;