PowerExchange for CDC and Mainframe
- PowerExchange for CDC and Mainframe 10.5.4
- All Products
// JOB //*-------------------------------------------------------------------* //* PowerExchange Change Data Capture - RECOVERING A RESTART DATA SET //*-------------------------------------------------------------------* //* REPLACE THE FOLLOWING ITEMS WITH PROPER INSTALLATION VALUES //* 1. JCL DATA SET NAMES //* 2. IDCAMS COMMAND SPECIFICATIONS //* 3. REPLACE ???? WITH YOUR LOGGER NAME. USING THE LOGGER NAME AS A //* DATA SET NAME QUALIFIER PROVIDES A STANDARD TO INDICATE WHICH //* DATA SET BELONGS TO WHICH LOGGER. //*-------------------------------------------------------------------* //ALLOCRDS EXEC PGM=IDCAMS,REGION=0M //SYSPRINT DD SYSOUT=* //SYSIN DD * DELETE (YOUR.????.ERDS01) ERASE SET MAXCC = 0 DEFINE CLUSTER - (NAME(YOUR.????.ERDS01) - VOLUMES(volser) - SHAREOPTIONS(2 3) ) - DATA - (NAME(YOUR.????.ERDS01.DATA) - RECORDS(100) - RECORDSIZE(4089 4089) - CONTROLINTERVALSIZE(4096) - FREESPACE(0 20) - KEYS(4 0) ) - INDEX - (NAME(YOUR.????.ERDS01.INDEX) - RECORDS(5 5) - CONTROLINTERVALSIZE(1024) ) /* //*--------------------------------------------------------------------* //REPRORDS EXEC PGM=IDCAMS,REGION=0M //SYSPRINT DD SYSOUT=* //SYSIN DD * REPRO INDATASET(YOUR.????.ERDS02) - OUTDATASET(YOUR.????.ERDS01) /*
JCL Statement | Description |
---|---|
EXEC | Specify the IDCAMS program. |
SYSPRINT DD | Specify the output data set for MVS system messages. |
SYSIN DD | Specify the IDCAMS commands DELETE, SET, DEFINE, and REPRO. For more information about these IDCAMS utility commands, see your IBM documentation. |
PRILOG DD | Specify the log data set names you used when you created the log data sets. You created these data sets during installation. |