

4. FILES › 5.2 VTS Component Files › 5.2.4 VTS Component HVT Information Area Files › 5.2.4.1 Hydra Vnode Device Activity File (HVTVDA) › 5.2.4.1.4 HVTVDA Retrieval Examples
5.2.4.1.4 HVTVDA 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 HVTVDA file, display
the total blocks of data moved between DASD cache and
z/OS for each cluster, per HOUR. Display the percent
buckets for each blocksize range and the estimated
average blocksize. Generate a separate page for each
cluster.
DATA;
SET &pHVTd..HVTVDA01;
DATE=DATEPART(ENDTS) ;
FORMAT DATE DATE8. ;
* ;
PROC PRINT LABEL ;
PAGEBY HVTCLID ;
BY HVTCLID DATE ;
ID HOUR ;
VAR VDANUMBS VDAPC00K VDAPC02K VDAPC04K VDAPC08K VDAPC16K
VDAPC32K VDAPC64K VDAAVBSZ ;
TITLE1
'Daily Tape Server I/O Block Size Analysis by HOUR' ;
RUN ;
Copyright © 2014 CA.
All rights reserved.
 
|
|