is there any utility for restarting a particular step in jcl reply soon ?
Answer Posted / mahesh n
RESTART =Procname.stepname
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
what happens in execution stage in job processing?
Explain how can the attributes of one sms dataset be copied to another dataset?
How can an in-stream dataset be terminated?
what is DSN in JCL and what are the parameters to declare the DSN?
how can you check if a file is empty using jcl?
how do you code a null statement?
Is it possible to left uncode disp? If yes, how?
Explain the jcl exec statement?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Suppose I have five jobs to do. But I want to hold one?
//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 /*
which utility is used a dummy utility?
Which dd parameters are required?
how you can direct the data to spool using SYSOUT option?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?