i have a base gdg consisting of 12 versions like jan to dec. i
need to concatante this gdg to another gdg which have version 1
or to the base gdg itself can anyone give me the code pls ?
Answers were Sorted based on User's Feedback
Answer / sha
Assume, old gdg base is FINANCES.MONTHLY and new gdg base
is FINANCES.MONTHLY.NEW
The code to concatenate the old gdg 12 versions is
//STEP1 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSUT1 DD DSN=FINANCES.MONTHLY,DISP=SHR
//SYSUT2 DD DSN=FINANCES.MONTHLY.NEW(+1),
// DISP=(,CATLG,DELETE),UNIT=DISK,
// SPACE=(CYL,(20,20),RLSE),
// DCB=*.SYSUT1
Please correct me if I'm wrong...
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / user
//STEP1 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSUT1 DD DSN=FINANCES.MONTHLY.G0001V00,DISP=SHR
DD DSN=FINANCES.MONTHLY.G0002V00,DISP=SHR
.....
DD DSN=FINANCES.MONTHLY.G0012V00,DISP=SHR
//SYSUT2 DD DSN=FINANCES.MONTHLY.NEW(+1),
// DISP=(,CATLG,DELETE),UNIT=DISK,
// SPACE=(CYL,(20,20),RLSE),
// DCB=*.SYSUT1
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / guest
the version 1 will be for jan only
finances.monthly.G0001V00 - it is for Jan
finances.monthly.G0002V00 - it is for feb
...
...
finances.monthly.G0012V00 -it is for dec
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mdv
Technically, both answer #2 and #3 are correct. However,
answer #3 is better.
There are cases when the LRECL of some generations ( after
some change) are different from the others. In that case,
you cannot use the base.
You'll have to concatenate same LRECL files together and
proceed.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can you trap abends in the JCL?
which utility is used to sort a file in jcl?
Suppose I have 5 dataset listed under a single DD name in a catlogued PROC. How can I override one of those 5 dataset (say 3rd dataset)?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
What will happen if we write two STOP RUN's in a COBOL program?
what is XSUM in some fields= none, xsum ??
Is condition checking possible in jcl?
What does IEBGENER do?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
How can a jobs execution priority be modified?
Give the syntax of job specifying jcl statement.
How many parameters are there to a DISP statement and what are their uses ?