I have a job (4 steps) with time parameter coded in job &
exec, say time=10 in job & time =3,2,2,4 in each steps.
Will the job executes successfully?
Answers were Sorted based on User's Feedback
Answer / megha
It depends on how much time each step takes,In the above
job the total time the job can take is 10 minutes and if
the total time taken by each step(step1 to step 4) is
within 10 minutes (and also within the time specified for
each step) ,then the job will execute without any error.
| Is This Answer Correct ? | 26 Yes | 0 No |
When the time parameter is mentioned in step and job card, then time parameter at step will take precedence. So only when the steps executing more time than the time limit mentioned in the step will cause the job failure with S322.. it does not consider the time parameter on JOB card.
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / balasukumar
WE WILL GET ABEND IN STEP4 WITH S322(TIME OUT ERREOR).
| Is This Answer Correct ? | 12 Yes | 9 No |
Answer / sunjay khan
Time parameter should not code in both Job & Exec, if we
coded Job overrides Exec.
| Is This Answer Correct ? | 7 Yes | 18 No |
How do you create a temporary dataset?
How would you understand error(execution phase)?
which utility is used to run a cobol-db2 program?
a jcl has 2 steps. How to code the jcl such that if step1 abends, then step2 runs. Else, job terminates with step1?
How to see the COMP3 value(packd decimal)
If job is submitted with typerun = hold then how can we submit the same job?
What is the difference between the positional and keyword parameters? Give examples.
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job
Could anyone please suggest me what is the maximum length of data that can be pass as input in //sysin dd * This was asked in interview. TIA
What is the purpose of the PARM keyword in the EXEC statement?
WHAT WILL HAPPEN TO A FILE IF DISP=(MOD,DELETE,DELETE)
In all our JOB Statement we have always COND=(4,LT) defined. Nevertheless when a Job failed the last step should then be executed (send a message to an user). Due to we don't like to change all our JOB's (ca. 2000), we are looking for a simply solution.