I have a JCL which 20 steps. How do I execute 17 th step
alone (It should execute only 17ths tep.and it should not
execute 18,19,20 steps??
Answer Posted / david
1. In job card type restart=step17 and type // followed by spaces after the 17th Step.
2. Use IEBEDIT
JCL interview questions
https://youtu.be/VE6cTuFpsXc
https://youtu.be/bExB_Tjp9A4
COBOL interview questions:
https://youtu.be/_O6gPk6jjLE
https://youtu.be/pQumm7ueYik
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of disp parameter?
define cond parameter in jcl?
what JCL Procedures?
what are the various stages of job processing?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding 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 catelog procedure and how many catelog procedure to use in one job?
Explain how can return codes be tested before execution of a job step?
how to do automated restart when a job abends?
Must tape dataset definitions include vol=ser specifications?
when does a dataset go uncataloged?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
Explain how can a stopped job be started again?