Wrete a JCL to compare two files and mached records move to
onc file & un mached rows wants to another file?
Answer Posted / sriam
Hi
i need the cobol Program, I don't want the jcl.
Any one can help me out.
| Is This Answer Correct ? | 11 Yes | 14 No |
Post New Answer View All Answers
What are the difference between jcl and jes?
Explain the job statement in jcl?
How is a type of file defined in the jcl that executes the cobol program?
What are s0c1, s0c4, s0c5, s0c7 and socb?
Which statement is used to identify the private libraries in job?
What are the parameter we cannot use in procedure?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
What is the function of job statement in jcl?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What is the difference between the positional and keyword parameters? Give examples.
In job processing, what happens in execution stage?
What do you understand by the term job time – out and how can you overcome that?
//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 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 use of restart and how to use it?