How to execute 300 steps in a Job?
Answers were Sorted based on User's Feedback
Answer / jugal kishor
Answer number 10 is not correct, the total number of steps
in all the procs <= 255
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / lalith
one job can execute max. of 255 steps only...
so we cant execute 300 steps in one job...
we can solve this using procs...
1). we can write some steps in one proc and remaining in
another procs call these two procs in one job then we can
execute 300 steps.
2). we can write 255 steps in one proc and remaining steps
in job....
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / shiba
call one job using another job
put all the 300 job in 2 diff job 0r jcl
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / sunil
i think it might be possible by using procdure.
we have write more than 255 step by using proc.And proc
step also included on that.
| Is This Answer Correct ? | 0 Yes | 6 No |
Answer / manikandan.d
by using procedure we can execute 300 step since each proc
contain max of 255 steps...
one way :
so here we may use 2 proc to execute 300 steps...
another way:
we may use one proc(255 steps) and remaining steps(45 steps)
just include in a same job after that proc
| Is This Answer Correct ? | 2 Yes | 11 No |
Are there any set of rules for the names of the steps used in a job? What are they?
How dummy is used in jcl?
What is the purpose of include statement in a JCL?
what is the difference between the JCLLIB and JOBLIB ,and where do we use it ?
What does IEBGENER do?
How do you skip a particular step in a proc/JOB?
How is the record format of an output dataset specified?
My JCL has 4 steps that execute PROC’s P1, P2, P3 and P4 as shown below //P1 EXEC PROC=P1 //P2 EXEC PROC=P2 //P3 EXEC PROC=P3 //P4 EXEC PROC=P4 There are four steps S1, S2, S3 and S4 in each PROC’s (i.e. P1, P2, P3 and P4) I want to execute only step S2 of PROC P2 and no other steps or PROC’s. How do you achieve this?
what is d/f b/w sysout & sysprint
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
What is condition checking in jcl? Is this possible?
how many max steps can we use in a job? pls answer to my question