Can I copy the FB (fixed Block) record length file to a VB
(variable Block)record length file and Vise Versa? If Yes
then how ? is that thru one of the JCL utility ?
Answer Posted / ds
Yes. using IEBGENER utility we can copy this. But this is
not advisable until there's a specific requirement.
FB to VB
--------
FB rec length is X
VB rec length should be X+4
VB to FB
--------
VB rec length is X (Length indicated in JCL)
FB rec length is X-4
Note: But here in second case lot disk space will be wasted.
Without the idea of requirement and system design, one
can't say anything.
Thanks, DS.
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
In sms datasets, what is the function of the dd avgrec keyword?
Mention the types of job control statements?
Can we use DISP=SHR in output file in JCL
what are the statements that are not valid to be included in an include statement?
What is the purpose of dd dummy statement?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
how you can access an uncataloged dataset in a JCL?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
How is a type of file defined in the jcl that executes the cobol program?
How would you understand error(execution phase)?
Brief description of inline procedure of jcl.
what is the resolution for sb37 error
What are some jcl statements that are not allowed in procedures?
Explain the function of //jcllib statement?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY