Previous Topic: 5.2.4.13.3 HVTHEI Usage ConsiderationsNext Topic: 6. DATA SOURCES


5.2.4.13.4 HVTHEI Retrieval Examples
1.  Use the most recent DAYS timespan HVTHEI file and display
     the number of volumes (physical and logical) and the
     megabytes of data that were exported and imported.
 
     The display is by HOUR by cluster.  This may or may not be
     a routine activity.  If not, this data can be trended
     using longer term data from the weeks or months timespans.
 
 
     DATA;
     SET &pHVTd..HVTHEI01;
     DATE=DATEPART(ENDTS) ;
     FORMAT DATE DATE8. ;
     * ;
     PROC PRINT LABEL ;
       PAGEBY HVTCLID ;
       BY HVTCLID DATE ;
     ID HOUR ;
     VAR HEIPVE HEILVE HEIDE HEIPVI HEILVI HEIDE;
     TITLE1
     'Daily Export-Import Activity by HOUR' ;
     RUN ;