can we maintain 2 generations with different Lengths in Same
GDG ?
Answers were Sorted based on User's Feedback
Answer / somalaraju
i told yes,but he asked have u ever tried with this type of
generations in same GDG.
I told that we can provide different lengths while creating
the Generations even they belong to same GDG, but i never get
a chance to do that one.
| Is This Answer Correct ? | 19 Yes | 5 No |
Answer / vishal
Yes, we can definitely have different GDG versions with
different LRECL. e.g. in the below change the LRECL to as
per your needs and each time it will generate the GDG
version with the LRECL provided.
//DD1 DD DSN=BASEG(+1),DISP=(NEW,CATLG,CATLG)
DCB=(MODELNAME,LRECL="WHAT U WANT"
However, there is a catch. If the GDG is being updated by a
program then whatever length has been declared in the
program (of the file corresponding to DD1), the GDG version
will have that same length, irrespective of the length
declared in the JCL.
Note: I guess if the length declared in the Program is
greater than that LRECL given in the JCL then we may face
JCL errors but I am not sure of this. SomEene can check and
let everyone know.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / krishna
YES
by overideing the LENGTH PARAMETER of model dataset
SYNTAX:
//DD1 DD DSN=BASEG(+2),DISP=(NEW,CATLG,CATLG)
DCB=(MODELNAME, RECLNG="WHAT U WANT"
| Is This Answer Correct ? | 5 Yes | 3 No |
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
What is a S0C4 error ?
How can return codes be tested before execution of a job step?
Explain about LMFREE�free data set from its association with data ID
What is GDG and what is the maximum limit of versions that can be created?
what is use of space parameter in dd statement?
What is COND=ONLY ?
A job has 90 steps i want to execute only step7 and step15
Hi, My dataset have multiple records, say 100. I want to start copy records only after a record contain a specific value that may be in a specific position. Secondly I want to stop copying rest records if certain record contains a specific value. Can it be done using SORT/ICETOOL utilities?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
Explain the jcl exec statement?
What are the differences between JES2 & JES3 ?