Job control statements to run DFHSMUTL

Control statements are read from SYSIN that specify the storage manager domain subpool records to be added to, or deleted from, the local catalog data set.

The format of the control statements to run DFHSMUTL is as follows:

  1. All commands must start in column 1.
  2. An asterisk in column 1 indicates a comment. Everything else on the line is ignored.
  3. To add a new subpool record to the local catalog, code ADD SUBPOOL=name, where name is the name of the subpool the record is added to (for example, ADD SUBPOOL=ZCTCTUA). There can only be one blank after ADD, and the rest of the line following the subpool name must be blank. The subpool name is not checked for validity.
  4. To delete a subpool record from the local catalog, code DEL SUBPOOL=name, where name is the name of the subpool the record is deleted from (for example, DEL SUBPOOL=ZCTCTUA). There can only be one blank after DEL and the rest of the line following the subpool name must be blank.
  5. To print a list of subpool records from the local catalog, code LST.
//SSYLCD JOB (accounting information),
// CLASS=A,MSGCLASS=A,MSGLEVEL=(1,1),USER=userid,NOTIFY=userid
//************************************************************
//*
//* Use DFHSMUTL to add or remove storage manager domain
//* subpool records to or from the local catalog data set
//*
//************************************************************
//SMUTL    EXEC PGM=DFHSMUTL
//STEPLIB  DD DSN=CICS320.SDFHLOAD,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//DFHLCD   DD DSN=CICS320.applid.DFHLCD,DISP=OLD      1
//SYSIN    DD *
ADD SUBPOOL=name-of-subpool-to-add                    2
DEL SUBPOOL=name-of-subpool-to-remove                 3
LST
/*
//
 
Note:
1. Change CICS320.applid.DFHLCD to the name of the local catalog.

2. Example, to enable the self-tuning mechanism for the ZCTCTUA subpool, specify ADD SUBPOOL=ZCTCTUA.

3. Example, to disable the self-tuning mechanism for the ZCTCTUA subpool, specify DEL SUBPOOL=ZCTCTUA.

Related reference
Local catalog storage program (DFHSMUTL)
Messages from DFHSMUTL
[[ Contents Previous Page | Next Page Index ]]