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?
Answer Posted / 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 |
Post New Answer View All Answers
What is condition checking in jcl? Is this possible?
Can I share my data with other jobs? How?
What is one line to pass PARM from JCL to COBOL?
Explain how can the submitting users racf authority be overridden in a job stream?
what is DSN parameter and DISP parameter is used for?
Is there any command to check wether the ps file is in sorted order?
how to do automated restart when a job abends?
what is DSN in JCL and what are the parameters to declare the DSN?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
how to run batch program without jcl?
How do you create a temporary dataset?
What is the function of the steplib dd statement?
How can values be passed from the job stream to an executable program?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
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