Using jcl run commands – HP XP Array Manager Software User Manual

Page 45

Advertising
background image

Performing Cache Manager Operations

4-17

Hitachi Cache Manager User’s Guide

Using JCL Run Commands

Figure 4-20 illustrates a JCL of combined volume commands. Cache Manager

edits and prints out the statistics information counter, resets the counter, then
resides the VTOC of the specified volumes. Then Cache Manager edits and
prints out the extent information.

(1)
(2)
(3)
(4)

(5)

(6)
(7)
(8)

(9)
(10)
(11)

//CSUT16 JOB MSGLEVEL=(1,1)
//CACHE EXEC PGM=HRUDCRX,REGION=1024K
//SYSPRINT DD SYSOUT=A
//RAIDPARM DD DSN=input dataset name, VOL=SER=volume serial number,
// UNIT=SYSDA,DISP=SHR
//VOL1 DD VOL=SER=CSVOL1,UNIT=SYSDA,DISP=OLD
//VOL2 DD VOL=SER=CSVOL2,UNIT=SYSDA,DISP=OLD
//SYSIN DD *
COUNTS DDNAME(VOL1) DKC REPORT RESET
BIND ENABLE DDNAME(VOL1) VTOC
BIND ENABLE DDNAME(VOL2) VTOC
STATUS DDNAME(VOL1) DKC EXTENT
/*
//

(1) Start of job.
(2) Execute HRUDCRX.
(3) Spool the message dataset.
(4) Define a dataset to store the device number.
(5) Define volume serial number in the cache storage system.
(6) Define a dataset to store the control statements.
(7) Edit statistics information counter and print out it and reset the counter.
(8) Reside the physical VTOC area of ‘CSVOL1’ and ‘CSVOL2’.
(9) Edit and print out the extent information.
(10) End of command.
(11) End of job.

Figure 4-20

Combined Volume Commands

Advertising