The JCL to resolve the prefixes (concatenated keys) for the logical records in the workfile from Step 3 is shown below:
Prefix (Concatenated Key) Resolution (Step 4) (z/OS)
//PFXR EXEC PGM=IDMSDLRC,PARM='PFXR,IDMSDLLD,ipsbname' //STEPLIB DD DSN=idms.loadlib,DISP=SHR // DD DSN=ipsb.loadlib,DISP=SHR //SYSOUT DD SYSOUT=A //SYSLST DD SYSOUT=A //SYSPRINT DD SYSOUT=A //SYS004 DD DSN=step3.workfile,DISP=OLD,UNIT=TAPE //SYS003 DD DSN=step4.workfile.DISP=OLD,UNIT=TAPE //
|
idms.loadlib |
data set name of the CA IDMS DLI Transparency load library |
|
ipsb.loadlib |
data set name of the IPSB load library |
|
ipsbname |
name of the IPSB load module |
|
step3.workfile |
sorted output from Step 3 |
|
step4.workfile |
the workfile output by this step |
Prefix (Concatenated Key) Resolution (Step 4) (z/VSE)
Note: For use if IDMSDLPC is included in the IDMSDLRC linkedit.
// JOB // LIBDEF *,SEARCH=(idms.library,user.library) // TLBL SYS004,'sorted.workfile' // ASSGN SYS004,nnn // TLBL SYS003,'hierarchic.workfile' // ASSGN SYS003,nnn // EXEC IDMSDLRC sysidms parameter statements PFXR,IDMSDLLD,ipsbname /*
|
idms.library |
data set name of the CA IDMS DLI Transparency library |
|
user.library |
name of the library that contains the IPSB and SUBSCHEMA modules |
|
sorted.workfile |
name of the tape data set that contains the output of the previous step's SORT |
|
hierarchic.workfile |
name of the tape data set that contains the output of this step's SORT |
|
nnn |
cuu address of the tape unit |
|
ipsbname |
name of the LOAD IPSB (Interface PSB with processing options of 'LOAD' ) |
Note: For use if IDMSDLRC does not include IDMSDLPC in the linkedit.
// JOB // LIBDEF *,SEARCH=(idms.library,user.library) // TLBL SYS004,'sorted.workfile' // ASSGN SYS004,nnn // TLBL SYS003,'hierarchic.workfile' // ASSGN SYS003,nnn // EXEC IDMSDLRC,PARM='PFXR,IDMSDLLD,ipsbname sysidms parameter statements /*
|
idms.library |
data set name of the CA IDMS DLI Transparency library |
|
user.library |
name of the library that contains the IPSB and SUBSCHEMA modules |
|
sorted.workfile |
name of the tape data set that contains the output of the previous step's SORT |
|
hierarchic.workfile |
name of the tape data set that contains the output of this step's SORT |
|
nnn |
cuu address of the tape unit |
|
ipsbname |
name of the LOAD IPSB (Interface PSB with processing options of 'LOAD' ) |
|
Copyright © 2013 CA.
All rights reserved.
|
|