If we have 100 job steps in JCL and we want to excute steps
only starting from 43 to 50, then how it can be coded in JCL/
Answer Posted / shaik.apsar
While submitting the JCL, use RESTART=Step43.
And from steps 50 step complet i am close the //
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is timing concept in mainframe?
Name what parameter directs the output of the job log dataset?
What is job control language?
Explain about ISPF/TSO Commands
Explain how can return codes be tested before execution of a job step?
//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 is the record format of an output dataset specified?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
What does a disposition of (new,catlg,keep) for a dsn mean?
What is the difference between the positional and keyword parameters? Give examples.
Explain the function of //cntl statement?
what operation is performed by job statement?
Is condition checking possible in jcl?
Explain how can values be passed from the job stream to an executable program?
In job processing, what happens in execution stage?