Previous Topic: 5.4.24.3 VMXASC Usage ConsiderationsNext Topic: 5.4 LNX Information Area Files


5.4.24.4 VMXASC Retrieval Examples


 
 VMXASC EXAMPLE
 
  The following example lists DASD and main storage page
  activity for address spaces executing on a z/VM system
  between the hours of 10:05 11:59 am.
 
 DATA PROCESS;
  SET &VMXX..VMXASC01;
   IF HOUR=10 OR HOUR=11;
  PROC SORT ;
    BY  SYSID YEAR MONTH DAY HOUR USER ASCNAME;
  RUN;
  PROC PRINT  NOOBS;
    BY SYSID MONTH DAY HOUR ;
    VAR USER ASCNAME ASCCTPGR ASCCTPGW ASCCTXRD ASCCTXWT
        ASCCTMIG;
    TITLE1 "DASD and Main Storage Page Activity in Hour 10
            and 11";
  RUN;