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 the sortcard for comparing two files with a field key and get the duplicates in onefile and noduplicates in another file
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
can we give instream data in procedure
How to do automated restart when a job abend?
i have a jcl containing header body and trailer .in header i have viswa body 2 6 1 9 7 trailer reddy .now i need to sort only body in either asecending or descending order how can i do it
Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
How to empty the records in jcl
Can we Execute a job without specifying Job Name in the Job Card?
whats SOC7?
what is the meaning of 'sysin dd dummy'
My requirement is : How to populate a empty PS/flat file with ONLY spaces in the first line. You should not use any input dataset to do this. I'm not sure whether you may use any utility for this purpose?