How to execute 300 steps in a Job?

Answers were Sorted based on User's Feedback



How to execute 300 steps in a Job?..

Answer / prashanth

In a job max no of step is 255 ,if we want more than this
we have to submit one more jcl with in the same job
by using 'internal reader' its a part of JES
ex..
// step1 exec...
.
.
.

//step255 exec pgm=IEBGENER
//sysut1 dd dsn=another jcl
//sysut2 dd dsn= (*.INTRDER)
//sysprint dd sysout=*

Is This Answer Correct ?    33 Yes 0 No

How to execute 300 steps in a Job?..

Answer / venkat

we can't execute more than 255 steps in one job, so it is
not possible with procs also indirectly

Is This Answer Correct ?    15 Yes 4 No

How to execute 300 steps in a Job?..

Answer / vimal kumar

Write a jcl like the below. Two jobs will be submitted from
the same jcl.

//JOBCARD1 .........
//STEP1 EXEC ...
......
.....
//STEP255 EXEC ...
...
//JOBCARD2 ....
//STEP256 ..
.........

Is This Answer Correct ?    8 Yes 3 No

How to execute 300 steps in a Job?..

Answer / ravi

give correct answers..

Is This Answer Correct ?    4 Yes 1 No

How to execute 300 steps in a Job?..

Answer / gowthami

we need to split the jcl into two jcls, at the end of first jcl check the condition code and initiate the second jcl.

Is This Answer Correct ?    3 Yes 0 No

How to execute 300 steps in a Job?..

Answer / harsha

I think its not possible.

Is This Answer Correct ?    5 Yes 3 No

How to execute 300 steps in a Job?..

Answer / guest

Hi Ravi,
prashanth answer is correct.

Is This Answer Correct ?    1 Yes 0 No

How to execute 300 steps in a Job?..

Answer / kumar swamy

Prasanths answer is absolutely correct, but so many are using more than one jobs indirectly, you have to recall the question. And one more thing job steps are counted including the procedure steps which is in that job.

Is This Answer Correct ?    1 Yes 0 No

How to execute 300 steps in a Job?..

Answer / brian

I don't suppose that practical versus possible is an option
here but it seems like a heavily loaded batch job to me.

Is This Answer Correct ?    0 Yes 0 No

How to execute 300 steps in a Job?..

Answer / pinky

Prasanth Answer is absolutely correct

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More JCL Interview Questions

how many max steps can we use in a job? pls answer to my question

9 Answers   TCS,


What are the 4 fields in dd statement?

0 Answers  


i) Difference between ps, esds, ii) Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb

2 Answers  


Is condition checking possible in jcl?

0 Answers  


Name a few IBM utility programs, and explain its function.

0 Answers  






which statement is used to end the in-stream procedure in a jcl?

1 Answers   IBM,


What u mean by include statement in JCL ?

3 Answers  


What is a procedure?

1 Answers  


What is the purpose of disp parameter?

0 Answers  


Could anyone please suggest me what is the maximum length of data that can be pass as input in //sysin dd * This was asked in interview. TIA

3 Answers   VC, Wipro,


While using SORT FILES =NONE,XSUM I am getting error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT IF APPROPRIATE"..I want to write duplicate records a a serparte file..how i can do tht?

3 Answers   Steria,


Is their any set of rules for dd? Explain.

0 Answers  


Categories