AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE
DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I
GET THE PROGRAM FOR THIS
Answer Posted / garry
Yes, Sort will do it for u.
//........Pgm=sort
........
.........
.........
//sysin DD *
copy (complete statement)
SUM FIELDS=NONE
/*
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is it possible to left uncode disp?
What is the function of a dd statement?
What does a disposition of (MOD,DELETE,DELETE) mean ?
Can we use DISP=SHR in output file in JCL
What is NOTCAT ?
How is the record format of an output dataset specified?
How can a jobs execution priority be modified?
Is their any set of rules for dd? Explain.
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
//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 /*
how you can access an uncataloged dataset in a JCL?
define cond parameter in jcl?
Does jcl support automatic restart?
How can the submitting users racf authority be overridden in a job stream?
What is condition checking in jcl? Is this possible?