If the COND parameter is specified in both the JOB and EXEC
statements, which one will take precedence? If JOB takes
priority and if all the conditions evaluate to false, then
will the conditions on the EXEC step be evaluated next?
Answers were Sorted based on User's Feedback
Answer / sno
If the COND parameter is code on the JOB as well as the
EXEC stmnts, then the specifications on the JOB statement
nullifies the specification on the EXEC statement.
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / suputhru
IF THE COND PARAMETER SPECIFIED AT BOTH JOB AND EXEC.
THEN JOB COND WILL OVERRIDE EXEC COND.
JOB COND WILL ACTIVE.
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / becky
Region,COND and TIME can be coded in both job and EXEC.
Region coded in Job overrides Region in EXEC.
COND coded in job overrides COND in EXEC.
TIME coded in EXEC overrides TIME in JOB.
| Is This Answer Correct ? | 2 Yes | 1 No |
how to eliminate the duplicates in sorting
if we are specifing joblib as well as steplib in job then at the time of execution how the process will complete
My JCL has 4 steps that execute PROC’s P1, P2, P3 and P4 as shown below //P1 EXEC PROC=P1 //P2 EXEC PROC=P2 //P3 EXEC PROC=P3 //P4 EXEC PROC=P4 There are four steps S1, S2, S3 and S4 in each PROC’s (i.e. P1, P2, P3 and P4) I want to execute only step S2 of PROC P2 and no other steps or PROC’s. How do you achieve this?
What do you understand by the term job time – out and how can you overcome that?
What is a procedure?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
What do you understand by jcl?
How can we execute only one step in a job
22 Answers MAHINDRA, Mind Tree, Tech Mahindra,
How many parameters are there to a DISP statement and what are their uses ?
How is a new GDG coded?
what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you