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 |
Max. No of DD statements in a job ?
What are the maximum and minimum sizes of any CONTROL AREA (VSAM datasets) ?
how to do automated restart when a job abends?
how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??
There is a procedure in A.B.PROCS(PROC1) (member name is PROC1) //PROCA... There is a call to a procedure PROCA from a JOB. //STEP01 EXEC PROCA ... Here "PROCA" in JOB refers to the actual PROC name or the member name of the PDS where this PROCA is stored.
SORT card to eliminate duplicity.
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.
How can the disposition of sysout datasets be set for an entire jobstream?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
What are the difference between jcl and jes?
db2 maintains information about the data... a.in tables. b.in a set of tables known as db2 catalog. c.in db2 database. d.none of the above. 1 What is the maximum number of tables that can be stored on a Partitioned Table Space ? 1 what is contained in the DB2 node lock file? A) data base names B) data base users names C) license keys D) server names Accenture 5 Can a primary key have null values? If we try to insert a null value in a primary key column, will it work or give an error code? 6 When you are working with the project after coding what will u do? Like what type of documents u will prepare? How will u do testing? 2 how to delete perticular row from table for ex. how you will delete 3rd row from table please answer THANKS IN ADVANCE IBM 7 max number of columns in a db2 table? 6 What is package versioning? Please give an example. 1 What is the picture clause of the null indicator variable? 6 How do you filter out the rows retrieved from a Db2 table ? 1 What is DB2 (IBM Database 2)? 3 Can any one tell me about Restart logic in DB2.
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE