There are two input sorting files and there is a need to
create one sort out file which contains data of both input
files. What is the sort card for this. Write a sample JCL
for this using a control card?
Answer Posted / dineshj
There is a way to give two input files in dfsort. coding is
here.,
//iksa01 job .....
//stp1 exec pgm=sort
//sortin dd dsn=iksa01.dfsort.input1,disp=shr
// dd dsn=iksa01.dfsort.input2,disp=shr
//sortout dd dsn=iksa01.dfsort.output1,disp=shr
//sysout dd sysout=*
//sysin dd *
/*
//
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What is the purpose of disp parameter?
Is it possible to left uncode disp?
what is the JCL statement consists of?
Explain in DD statement what is the use of DCB parameter?
What is the function of dd disp parameter?
Explain about LMQUERY�give a dialog information about a data set
List in order the hierarchical levels of jcl?
Explain the function of job statement in jcl?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
Define concatenating?
How to run cobol program using jcl?
what is SOC4 error?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Is it possible to code instream data in a PROC?