PowerExchange for CDC and Mainframe
- PowerExchange for CDC and Mainframe 10.5.4
- All Products
// JOB //*-------------------------------------------------------------------* //* PowerExchange CDC - DEFINE ACTIVE LOG DATA SETS TO LOGGER //*-------------------------------------------------------------------* //* REPLACE THE FOLLOWING ITEMS WITH PROPER INSTALLATION VALUES //* 1. JCL DATA SET NAMES //* 2. 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. //*-------------------------------------------------------------------* //DEFLOG EXEC PGM=EDMLC000,PARM='????,BATCH' //STEPLIB DD DISP=SHR,DSN=HLQ.LOAD <=== PWX LOAD //EDMPARMS DD DISP=SHR,DSN=YOUR.USERLIB <=== EDMSDIR,EDMUPARM //ERDS01 DD DISP=SHR,DSN=YOUR.????.ERDS01 <=== PRI RESTART DSN //ERDS02 DD DISP=SHR,DSN=YOUR.????.ERDS02 <=== SEC RESTART DSN //SYSPRINT DD SYSOUT=* //SYSIN DD * DEFINE_LOG DSNAME=YOUR.????.PRILOG.DS03, COPY=PRILOG END DEFINE_LOG DSNAME=YOUR.????.SECLOG.DS03, COPY=SECLOG END /*
JCL Statement
| Description
|
---|---|
EXEC
| Specify the EDMLC000 program.
|
PARM
| Include the Logger name, followed by BATCH.
|
STEPLIB DD
| Include the PowerExchange CDC load library. If you added the load library to your system's LNKLST concatenation, you do not need to add it to the STEPLIB.
|
EDMPARMS DD
| Specify the name of the user library (YOUR.USERLIB) that contains the PowerExchange Logger EDMUPARMS module options associated with the PowerExchange Logger that uses these data sets.
|
ERDS01 DD
| Specify the data set name of the primary restart data set. Make sure that this name matches the name you used when you created this data set.
|
ERDS02 DD
| Specify the data set name of the backup restart data set. Ensure that this name matches the name you used when you created this data set.
|
SYSPRINT DD
| Specify the output data set for MVS system messages.
|
SYSIN DD
| Specify the PowerExchange Logger command, DEFINE_LOG.
|