how to convert a file form fixed Length to variable length?
Answer Posted / harsh
//FBVB JOB A92,PROGRAMMER
//S1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=A123456.SORT.SAMPIN,DISP=SHR
//VBOUT DD DSN=A123456.SORT.VSAMP,DISP=(NEW,CATLG,DELETE),
// UNIT=3390,SPACE=(CYL,(5,5))
//SYSIN DD *
OPTION COPY
OUTFIL FNAMES=VBOUT,FTOV
/*
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
how you can direct the data to spool using SYSOUT option?
How to pass data to a program that is coded in an exec statement?
How to override loadlib?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
Name the parameters which can be used to limit the number of records written to a sysout dataset?
How do you submit a job for execution?
how you can access an uncataloged dataset in a JCL?
Why block size is multiple of lrecl in jcl?
What do you understand by the term notcat 2 – gs?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
Must tape dataset definitions include vol=ser specifications?
Explain the function of //cntl statement?
which parameter is use to declare the name of dataset in dd statement?
what is the difference between JES3 and JES2?
which parameter is used to check the syntax of a jcl without executing it?