with out sorting how to copy records from one file to
another file using jcl.Mean I have one input file in which
the record are like 1,6,5,4,2,3(for example) and i want to
copy to output file from top to bottom(without sorting) like
3,2,4,5,6,1.so I want the JCL for this.cna any one can
answers?
Answer Posted / ramesh
Please find below sort card for same
//SYSIN DD *
INREC FIELDS=(1:1,10,11:SEQNUM,8,ZD)
SORT FIELDS=(11,8,ZD,D)
OUTREC FIELDS=(1:1,10)
/*
Here we have data from 1 to 10 columns , i am generating
seqence number from column 11 in descending order , which
is not part of record layout .
After generating Seqence number digits will get reversed .
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
What are s0c1, s0c4, s0c5, s0c7 and socb?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
how do you access an uncataloged dataset in a jcl?
Is their any limit for data sets?
A dd statement consists of 4 fields. Name them?
What are the parameters that are used in creating a gdg?
How to run cobol program using jcl?
Is it possible to left uncode disp? If yes, how?
What are hierarchy levels in jcl?
List the different jcl statements that are not permitted in the procedures?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
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?
Explain the function of a dd statement?
What are the 4 fields in dd statement?
How does the jcl specify the job to os?