Previous Topic: Basic CICS InstallNext Topic: CICS VSAM KSDS Install


CICS VSAM SDT Install

Use the following to create the VSAM files when using VSAM SDT as the temporary location for start data. Change the data set name to the DSN you are using. You can change the DDNAME if you make the corresponding update in TIRMQTDZ. Adjust MAXNUMRECS as your installation requires. Do not use a CICS maintained table. Use only a USER maintained table. Use values specific to your installation for YOUR.TEMP.DATASET in the DSNAME and CLUSTER parameters.

Run DFHCSDUP using the following deck:

DEFINE FILE(TITDTEMP)
DESCRIPTION(CA Gen Transaction dispatcher temp SDT)
DSNAME(YOUR.TEMP.DATASET)
STRINGS(5)
ADD(YES) DELETE(YES) READ(YES) BROWSE(YES)
RECOVERY(NONE)
RECORDSIZE(32760) RECORDFORMAT(V) KEYLEN(8)
TABLE(USER) MAXNUMRECS(4096)
GROUP(TDCGROUP)

Add a Group of your choice.

Run IDCAMS as follows:

//IDCAMS EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//DD1 DD *
00000000
/*
//SYSIN DD *
DEFINE CLUSTER(NAME(YOUR.TEMP.DATASET) -
                 VOLUMES(VVVVVV) -
                       CYLINDERS(5 5) -
                        RECORDSIZE(865 32760) -
                 KEYS(8 0) -
                     )
REPRO INFILE(DD1) OUTDATASET(YOUR.TEMP.DATASET)