what is the restart?hopw it is invoked?
Answer / o
which job step u want ti execurte first, there u wtiten the
retsrt commands.
//jobname job restart=stepname...
| Is This Answer Correct ? | 4 Yes | 0 No |
If i am going to change some variable in a copybook( size or variable type) ,what are the changes that need to be done in the corresponding JCL.
what operation is performed by job statement?
How to pass the parameter in parm using linkage section ? (syntax)?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
Explain about SYSVAR
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
what is the Difference between SYSIN and PARM ?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
If Name is NOT given for a JOB statement, then will it give error or installation will supply it for the JOB ?
In My job I have 15 procs.and in each proc i have 3 steps. i want to execute 3 step in proc 10.is it possible? if possible how?
How to execute a set of JCL statements from a COBOL program ?