What are three major types of JCL statements? What are their
functions?
Answer / guest
JOB - indicates start of jobstream to the operating system
and through parms coded on it, certain details about the
job (time, region, message level, job accounting data).
EXEC ? indicates the start of execution of a particular job
step, be that step a program or a proc.
DD - is a data definition, which is used to describe the
attributes of a data set (name, unit, type, space,
disposition).
| Is This Answer Correct ? | 11 Yes | 1 No |
What is the DD statement for a output file?
Describe the JOB statement, its meaning, syntax and significant keywords?
jcl is like a complier....?
What is one line to pass PARM from JCL to COBOL?
I have a job (4 steps) with time parameter coded in job & exec, say time=10 in job & time =3,2,2,4 in each steps. Will the job executes successfully?
How are GDGs concatenated?
Explain about RECORDING MODE Clause
how can i use the parameters decalred in main pgm in sub pgm
What is the error code SOC01 indicate ?
i have 5 steps to execute in that i want to skip 3nd step and start execute from forth step how can u do this.
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?