In JCL..for TIME Parameter was specified both JOB &
STEP..which one is overrides

Answers were Sorted based on User's Feedback



In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

Answer / rafee.mfs

Step statement will be override

Is This Answer Correct ?    16 Yes 1 No

In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

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

In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

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

In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

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

In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

Answer / harsha

Naidu is correct.

Time parameter coded on Job will override time parameter on
STEP.

Is This Answer Correct ?    4 Yes 5 No

In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides..

Answer / v khurana

In that case smaller time will be applicable.

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More JCL Interview Questions

can we copy a file from fixed block to variable block and vice versa ....asap

1 Answers  


Describe the various parameters utilized in the creation of a gdg?

0 Answers  


What is condition checking in jcl? Is this possible?

0 Answers  


CAN ANYONE TELL ME WHAT IS "JOB-CARD"

4 Answers   Syntel,


I've one sequential file, that file size is LREC=100 (File contain Records like 1 to 100). Now I was increase the file size is LREC=102. My question is I want insert 00 (Two Zeros) in to the new file (That output file looks like : 00123 up to 100). How will write the SORT card in JCL. Please let me know.

2 Answers   Syntel,






A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)

1 Answers   IBM,


There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?

11 Answers   IBM,


How to ALTER the name of a GDG ?

2 Answers   IBM,


What all are the changes to be made in JCL so as to do testing?

2 Answers   TCS,


i just need the first and last record from a sequencial file?how

2 Answers  


how can i code cond parameter in procedures ? i have a jclk calling a proc which has 10 steps i want to execute from step 5 to step 10 where can i code restrat parameter or cond parameter for ths

4 Answers   IBM,


State the uses of syspring, sysin, sort fields, sum fields and dummy.

0 Answers  


Categories