how many max steps can we use in a job? pls answer to my
question
Answers were Sorted based on User's Feedback
Answer / ganesh kumbhar
We can Write 1 JOB statement
255 EXEC statement (steps)
3273 DD statement
| Is This Answer Correct ? | 30 Yes | 0 No |
Answer / lu
255...but it's better to divide many differents job because
if you get abend, it's more easy to fix or to
rerun...because when you're on call, and u wake up at 3
AM...255 steps !!!!! even you know what step is abended...
| Is This Answer Correct ? | 13 Yes | 1 No |
Suppose I have seven jobs to do, but I want to hold one than how can I do this?
what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
What is DSNDB06 ?
hello friends ,i have exam in Hsbc,pls any on send me placement papers and technical questions on mainframes,thank u
how many max steps can we use in a job? pls answer to my question
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
describe the exec statement,its meaning ,syntax and keywords?
I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)
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)
what is alternate index?
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.