TIME parameter in JOB statement or EXEC statement specifies
What type of time (CPU time or execution time)?
Answers were Sorted based on User's Feedback
Answer / varun
TIME specifies the maximum CPU time allocated for a
particular job or job step. If TIME is in the JOB card, it
relates to the entire job; if in the EXEC statement, it
relates to the job step.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sathish kumar
It is a amount of cpu time that a job or perticuler job
step is permitted to utilized before it is terminated.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / varun
TIME parameter can be used to overcome S322 abends for
programs that genuinely need more CPU time. TIME=1440 means
no CPU time limit is to be applied to this step.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / runjhun
TIME parameter in JOB statement specifies max. CPU
timelimit for the entire job whereas that coded in EXEC
specifies the time limit for that particular step only.
| Is This Answer Correct ? | 1 Yes | 0 No |
How to do automated restart when a job abend?
i have 10 steps in my jcl. -->if i want to execute my program from 5th step what i have to do? don't give //* in ur previous steps --> if i want to execute my program from 1to 5 steps only what i have to do?
Do we need to code DCB parameters when using DISP position as MOD?
I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ( How do you code instream data in a JCL? )
What is the use of ikjeft1b utility in jcl?
What is the maximum length of a single line of jcl?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
how you will the direct the data to spool using sysout option?
Can comments be specified at the very beginning of a jobcard? Will the JCL execute?
Explain about File Tailoring
If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?
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