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 JCL?
What is a PROC? What is the difference between an instream and a catalogued PROC?
Suppose we have 5 steps in a job.No step should be executed After submitting every step in a job
What is GDG?
Which COND paramter will u use to execute the step only if the previous step does not execute
How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.
I have a File that has duplicate records. I need only those records that occur more than thrice.
AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I GET THE PROGRAM FOR THIS
Which is the most widely used batch performance monitor for DB2?
how to execute the last 5 steps in jcl
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.
how to identify the file used in the JCL is an VSAM file. Just seeing the JCL code how can we track the file as VSAM file?