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 |
I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ( How do you code instream data in a JCL? )
How does jcl act on code(if you take a cobol program)?
how to compress the data set
Is there any command to check wether the ps file is in sorted order?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
what is use of dsn parameter in dd statement?
Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?
What is the difference between the JOBLIB and the STEPLIB statements?
How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL.
How to search strings in multiple dataset with conditions 'string1 & string2'?
Can a PROC CALL another PROC ? (in both Instream and Cataloged cases) ?