Create and initialize a repository catalog

JCL for this scenario is contained in the Fast Path/EP sample library in the member #INITEPR.

JCL to create and initialize a repository catalog

01 //
IDCAMS  EXEC PGM=IDCAMS
02 //SYSPRINT DD  SYSOUT=*
03 //SYSOUT   DD  SYSOUT=*
04 //SYSIN    DD  *
05   DELETE  BMC.PFP.PFPEPR
06   SET MAXCC=0
07   DEFINE CLUSTER - 
08     (NAME(BMC.PFP.PFPEPR) -
09     UNIQUE  -
10     SHAREOPTIONS(2)  -
11     CYL(5 1)  -
12     VOL(vvvvvv))  -
13   DATA(NAME(BMC.PFP.PFPEPR.DATA) -
14     KEYS(32 0) -
15       ControlINTERVALSIZE(4096) -
16     FREESPACE(20 10) -
17     RECORDSIZE(512 512)) -
18   INDEX(NAME(BMC.PFP.PFPEPR.INDEX) -
19     IMBED -
20     REPLICATE)
21 //*
22 //PFPINIT   EXEC PGM=PFPEPR00
23 //STEPLIB   DD DISP=SHR,DSN=BMC.PFP.LOAD
24 //          DD DISP=SHR,DSN=IMSVS.RESLIB 
25 //PFPSYSIN  DD *
26   PROCESS_EPR REPOSITORY_DSNAME='BMC.PFP.PFPEPR'
 /*

Line no.

Comments

01-03

EXEC and output message DD statements for executing IDCAMS program.

04

SYSIN DD for IDCAMS control statements.

05-20

Defines and creates the repository VSAM cluster.

21

End of IDCAMS control card input.

22-24

EXEC and STEPLIB statements for execution of repository program (PFPEPR00).

25

PFPSYSIN DD for Fast Path/EP control statement.

26

Initializes the repository catalog by adding a global allocation rule with defaults DSNAME=NULLFILE and UNIT=SYSDA. When databases are analyzed by other jobs that refer to this repository catalog, only summary analysis statistics will be stored.

Related topic

This version of the documentation is no longer supported. However, the documentation is available for your convenience. You will not be able to leave comments.

Comments