Figure 4-3 bind/disable command – HP XP Array Manager Software User Manual

Page 32

Advertising
background image

4-4

Performing Cache Manager Operations

Hitachi Cache Manager User’s Guide

Figure 4-3 is a sample JCL of a BIND/DISABLE command.

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

(5)
(6)
(7)
(8)
(9)
(10)
(11)
(12)
(13)

//CSUT02 JOB MSGLEVEL=(1,1)
//CACHE EXEC PGM=HRUDCRX,REGION=1024K
//SYSPRINT DD SYSOUT=A
//VOL1 DD UNIT=SYSDA,VOL=SER=CSVOL1,DISP=OLD
//VOL2 DD UNIT=SYSDA,VOL=SER=CSVOL2,DISP=OLD
//SYSIN DD *
BIND DISABLE DDNAME(VOL1) VTOC
BIND DISABLE DDNAME(VOL2) DATASET(‘USER.FILE’)
BIND DISABLE VOLUME(CSVOL3) DKU
BIND DISABLE VOLUME(CSVOL4) CCHH(00100005 00100007)
BIND DISABLE VOLUME(CSVOL4) SYSTEMDS
BIND DISABLE VOLUME(CSVOL4) FREESPACE
/*
//

(1) Start of job.
(2) Execute HRUDCRX.
(3) Spool the message dataset.
(4) Define the volume serial number of ‘CSAVOL1’ and ‘CSVOL2’ in the cache storage system.
(5) Define a dataset in which control statements are stored.
(6) Define an area to release residence in cache memory. DDNAME defines the dd name in the DD statement.

VTOC specifies the cache residence to be released by VTOC area.

(7) Define an area to release residence in cache memory. DDNAME defines the dd name in the DD statement. This

is a required parameter to define dd name (VOL2) in DD statement (4). DATASET specifies the residence area
to be released by dataset area (DSN: USER.FILE).

(8) Define an area to release residence in cache memory. VOLUME defines a volume serial number in the storage

system. DKU releases all resident areas in the volume serial number of ‘CSVOL3’.

(9) Define an area (three tracks) to release residence in cache memory. VOLUME defines a volume serial number

in the cache storage system. CCHH specifies the resident area to be released by absolute address
(hexadecimal).

(10) Define an area (using VTOC area, VTOCIX area, and VVDS area) to release residence in cache memory.

VOLUME defines a volume serial number in the cache storage system. SYSTEMDS releases the resident area
(defined by VTOC, VTOCIX or VVDS).

(11) Define an area to release residence in cache memory that has no dataset. VOLUME defines a volume serial

number in the cache storage system. FREESPACE releases resident extents with no dataset.

(12) End of command.
(13) End of job.

Figure 4-3

BIND/DISABLE Command

Advertising