PowerExchange for CDC and Mainframe
- PowerExchange for CDC and Mainframe 10.5.6
- All Products
//******************************************************************** //* * //* RUN DETAIL IDMS LOG BASED ECCR * //* * //******************************************************************** //ECCRAD1 EXEC PGM=DTLCCIDL,REGION=50M //STEPLIB DD DISP=SHR,DSN=&HLQ..LOADLIB // DD DISP=SHR,DSN=&HLQ..LOAD //EDMPARMS DD DISP=SHR,DSN=&HLQ..&LOGGER..USERLIB //DTLCFG DD DISP=SHR,DSN=&RUNLIB(DBMOVER) //DTLKEY DD DISP=SHR,DSN=&RUNLIB(LICENSE) //DTLCACFG DD DISP=SHR,DSN=&RUNLIB(ECCRIDLP) //SYSIDMS DD DISP=SHR,DSN=&RUNLIB(MYDMCL) //DTLAMCPR DD DISP=SHR,DSN=&HLQ..CCT //DTLMSG DD DISP=SHR,DSN=&HLQ..DTLMSG //* IF USING MESSAGE OVERRIDE THEN CUSTOMIZE BELOW //*DTLMSGO DD DISP=SHR,DSN=&RUNLIB(DTLMSGO) //* //******************************************************************** //* FOLLOWING FILE CONCATENATION POINTS TO THE RESULTS FILES CREATED * //* BY THE DTLUCSR2 UTILITY AND ALLOWS BUILDING OF SR2 RUNTIME TABLE.* //******************************************************************** //* //SR2INPUT DD DISP=SHR,DSN=&HLQ..SR2TOTAL // DD DISP=SHR,DSN=&HLQ..SR2OUT //DTLLOG DD SYSOUT=* //DTLLOG01 DD SYSOUT=* //DDPRINT DD SYSOUT=* //DDDRUCK DD SYSOUT=* //SYSUDUMP DD SYSOUT=* //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //EDMMSG DD SYSOUT=* //CEEDUMP DD SYSOUT=*
Statement
| Description
|
---|---|
EXEC
| Specifies the ECCR program, DTLCCIDL.
|
STEPLIB DD
| Specifies the PowerExchange LOADLIB and LOAD libraries.
If you capture change data from IDMS records that use Presspack compression, you must also specify the IDMS runtime libraries so the ECCR can use Presspack decompression during change capture. Specify the IDMS libraries as follows:
|
EDMPARMS DD
| Specifies the name of the user library that contains the EDMSDIR default options module that is associated with the PowerExchange Logger.
If you do not include an EDMPARMS DD statement, or if you specify a library that does not contain the options module, PowerExchange uses the STEPLIB concatenation to get the configuration options.
|
DTLCFG DD
| Specifies the DBMOVER configuration file for PowerExchange, which contains some parameters applicable to the IDMS log-based ECCR.
|
DTLKEY DD
| Specifies the PowerExchange license key file.
|
DTLCACFG DD
| Points to the RUNLIB(ECCRIDLP) member that contains IDMS log-based ECCR options.
|
SYSIDMS DD
| Include this statement only if you capture change data from IDMS records that use Presspack compression and you do not use the default DMCL named “IDMSDMCL.” This statement either points to a data set that contains your DMCL statement or specifies the DMCL inline. Use the following syntax to specify the DMCL inline:
Where
name is a DMCL name up to eight characters in length.
|
DTLAMCPR DD
| Specifies the data set that contains the capture registrations.
|
DTLMSG DD
| Specifies the output data set for PowerExchange messages.
|
SR2INPUT DD
| Specifies the DTLUCSR2 utility result files. These files contain information that is used to generate the SR2-SR3 internal table.
|
DTLLOG DD and DTLLOG01 DD
| Specifies the output data sets for ECCR capture statistics.
|
EDMMSG DD
| Specifies the output data set for IDMS log-based ECCR messages.
|