wht happens if blksize = 0 and lrec = 0 ?
Answer / rambabu
If we try to allocate a dataset giving blksize = 0 and
lrecl = 0, with Record format as FB, then system will give
you the below allocation error
"Record length of zero is valid only if record format is U"
If you are trying to copy an input dataset to an output
dataset with blksize=0 and lrecl=0, then system will copy
the file successfully and will allocate the record length
and block sizes that input datset has.
If you allocate the dataset with giving blksize = 0 and
lrecl = 0, with Record format as U, then the sort utility
fails with RC 16.
| Is This Answer Correct ? | 16 Yes | 1 No |
How to find in aparticular step how many versions a paricular gdg base have?
In a proc i will concatinate 4 dd statements.i want to overide 3 dd statement through jcl how?
how GDGs are concatinated?
How does jcl specify the job to the operating system?
When will we need to specify Space parameter ?
I have 255 procedures in a job, each procedure contain 2 steps.can we execute this job?
What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?
what is d/f b/w sysout & sysprint
Can we call instream to catalog and catalog to instream?
I have a Symbolic Parameter which can have a value say 01 or 02 etc. Now consider i have another Symbolic parameters which is used to get 3 digit code of months (JAN, FEB, etc) but for that i need to check the first symbolic parameter's value and provide its corresponding month's name in the second symbolic parameter. Say IF sym1 = 01 then sym2='Jan' ENDIF etc... In JCL, IF condition is used for RC, ABEND purposes of a step etc. When i use Symbolic parameter in IF clause it is showing Error message. Is there a way to get the above result possible in JCL. If you could provide me with an example, i would understand it better.
How many instream we can write in single jcl?
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3