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 |
How can you execute a COBOL program via SYSIN in JCL?
diff bw vsam and normal flat file?
how to put a dependency on job in jcl using opc scheduler?
Can a temporary dataset be converted to permanent dataset and vice-versa in the middle of a job ?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
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?
IIN APITUDE THEY GAVE ONLY 10 QUESTIONS.. THEY ARE SIMPLE ONE FROM NUMBER SERIES,BOATS,TIME & DISTANCE,PROFIT &LOSS,FIND OUT THE NUMBER ? 9 25 4 36 81 64 49 AND surveillance SPELLINGS E.T.C
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
Suppose I have five jobs to do. But I want to hold one?
Why do you use a control card?
how to run batch program without jcl?
Is stepname is a MUST and should be unique also for each JOBSTEP ? or system can supply the stepname for a step which is not given a name by the programmer ?