We have two PS files,want to compare those files and put
the duplicate records in one file.
Input file 1 contains(1,2,4,9,10)
Input file 2 contains (1,4,5,11,12,14,16).
Help me with jcl.
Answer Posted / karthik
@aditi n nikita
i think we can use ibm utility iebcompare
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the function of job statement in jcl?
how you will the direct the data to spool using sysout option?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
how to do automated restart when a job abends?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Explain the job statement in jcl?
//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 /*
What is the purpose of dd * statement in jcl?
Is automatic restart possible in jcl?
how can the same proc be re-used and called by many jobs?
Explain about LMFREE�free data set from its association with data ID
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
What is the function of dd disp parameter?
What is the difference between the positional and keyword parameters? Give examples.
Name a few IBM utility programs, and explain its function.