In JCL..for TIME Parameter was specified both JOB &
STEP..which one is overrides
Answers were Sorted based on User's Feedback
Answer / srinivas
The job time will work for total job and step time will
work for only that step ... so with in that step time the
step should complete else it will abend .. but with in job
time that total job should complete it wont conseder how
much time each step is taking .so job time will over ride
the step time...
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / naidu
//job card time=(15,20)
//step1 exec pgm=iebgener,time=(3,49)
in this above time in the job step only appplicable for
the whole steps in job.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / vidhya
If time parameter is specified on both job and exec the
smallest of the one is taken.
eg:
//job1 job time= 3
//step1 exec pgm=pgm1, time = 1
//step2 exec pgm=pgm2, time = 1
Step1 can take max of 1 min and step 2 can take max of 1
min. So the total time taken by 2 steps cannot be greater
than 2 mins even if the time on job card is 3 mins.
//job1 job time= 2
//step1 exec pgm=pgm1, time = 1
//step2 exec pgm=pgm2, time = 2
if step1 runs for 0.75 mins, then step 2 can take max of
1.25 mins. Bcoz the total time taken by both the steps
should not exceed 2 mins as the time on job card is only 2
mins.
On the whole, the time taken by each job step should not
exceed the time given for that step and also the total time
taken by all the steps should not exceed the time given for
that job.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / harsha
Naidu is correct.
Time parameter coded on Job will override time parameter on
STEP.
| Is This Answer Correct ? | 4 Yes | 5 No |
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
which utility is used to sort a file in jcl?
How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL.
Explain about Specifying compiler options in the PROCESS (CBL) statement
What is STEPLIB, JOBLIB? What is it used for?
Does jcl support automatic restart?
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?
what is full form of AIX
In job processing, what happens in execution stage?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What is dummy parameter in JCL??
How to get cursor position from system in CICS environment ?