What are the basic JCL Statements for a Job?
Answer / guest
JOB : Identifies a job and supplies accounting info
EXEC : Identifies a job step by indicating the name of the
program to be executed.
DD : Identifies a data set to be allocated for the job step
Delimiter(/*) : Marks the end of an in-stream dataset
Null(//) : Marks the end of a job
Comments(//*) : Provides Comments
PROC : Marks the beginning of a procedure
PEND : Marks the end of a procedure
OUTPUT : Supplies options for SYSOUT processing.
| Is This Answer Correct ? | 3 Yes | 1 No |
What is NOTCAT 2
after submiting the jcl.how do you know that the job has been completed.
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?
Is their any limit for data sets?
Explain about LMGET�read a logical record from a data set
what is the meaning of keyword in jcl?what is is opposite?
How to execute a set of JCL statements from a COBOL program ?
Where & How Do You Code Identifier In Jcl?
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?
What is the difference between sb37,se37,sd37 each?
//ERFDS JOB //STEP1 //STEP2 //STEP3...COND=(4,LT) //STEP4 1.CONDITION IN STEP3 REFERS TO WHICH STEP'S RETURN CODE (STEP1 OR STEP2)? 2.IN ABOVE PROGRAM IF CONDITION SATISFIES IN STEP3 WHICH STEPS WILL EXECUTE?? AND WHY? IF CONDITION IN STEP3 SATISFIES
how can the same proc be re-used and called by many jobs?