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
Explain dfsort utility?
Why block size is multiple of lrecl in jcl?
Is acct parameter mandatory?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
What is the function of the dd dcb keyword?
What are some jcl statements that are not allowed in procedures?
How do you access an uncatalogued dataset in a jcl?
What is the format of comment statement?
Is automatic restart possible in jcl? If yes, how?
what is the JCL statement consists of?
Can we call instream to catalog and catalog to instream?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
write a jcl to execute a job by 7:00 am on jan 20,1986?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?