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 |
Is their any limit for data sets?
I have four steps in jcl they are STEP1,STEP2,STEP3 and STEP4. Can it possible to run the reverse order like step4 first then step3,step2,step1?
Explain about RECORDING MODE Clause
A job has 150 steps i want to execute only 57th step
What is JCL LIB ?
how to put a dependency on job in jcl using opc scheduler?
Can we Execute a job without specifying Job Name in the Job Card?
how to compare two datasets without using superce because output is limited to 133 bytes
In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and want to execute step04. and once step04 is done then I want to go back and execute step03. once step03 is completed I want execute step05, 06 and so on... can any one tell me how do i do that???
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
wht r different types of sorts ?
i have 10,000 records in one input file.i want to sort 1 to 5000 records in one outputfile and remaining records sort in another output file write the syntax for this?