describe the dd statement,its meaning,syntax and keywords?
Answer / krithiga hari
DD statement contains the information about the data that
will be read or written within the job. The DD statement
must immediately follow the Exec statement. It should exist
for all the datasets.
Following are the parameters of DD statement.
ddname, DSN - Dta Set Name, DISP - Disposition (sattus,
normal disposition, ubnormal disposition)
Example:
//JOB1 JOB A123, 'KRITHIGA'
//STEP1 EXEC PGM=PGM1
//DDNAME DD DSN=DATA.ORG.JCL.TEST,
DISP=(NEW,CATLG,DELETE)
| Is This Answer Correct ? | 1 Yes | 0 No |
how can you check if a file is empty using jcl?
how do u see jobs submitted before ur job ?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?
How can unused space allocation be returned to the system when a dataset is closed?
what is the difference between return code and maxcc?
How gdg are concatenated?
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?
How many types we can give input to JCL
What is the purpose of dd?
what is fixed length and variable length and difference between them
I have Job A and Job B. I want to trigger Job B from Job A. Please advise.