which statement is used to end the in-stream procedure in a jcl?
Answer Posted / swati
PEND
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is acct parameter mandatory?
How do you create a temporary dataset?
In sms datasets, what is the function of the dd avgrec keyword?
What is job control language?
What parameter directs the output of the job log dataset?
what is the use of IEBGENER utility?
Give the syntax of job specifying jcl statement.
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
Explain the function of job statement in jcl?
Explain how can the attributes of one sms dataset be copied to another dataset?
How jcl is used for testing batch programs?
//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 /*
List the different jcl statements that are not permitted in the procedures?
what is the compile process of cobol program expalin with code
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?