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 |
What is the purpose of include statement in a JCL?
How would I code JCL to copy a gdg data set G001v00 and create a gdg Data set G001v01
i have 10steps and i want run step3 and based on step3 i want execute step7,8,9,10?in jcl
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?
My JOB contains three steps. //STEP1 EXEC PGM=ABC //STEP2 EXEC PGM=DEF //STEP3 EXEC PGM=GHI My Question is 1) I want to execute second step only. How will do. 2) Soppose U consider above three steps are in PROC steps and I want execute the PROC second step only? How to execute the second step only. During exection time its creating any ABEND? Please let me know..........
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?
What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?
Is it possible to code instream data in a PROC?
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
What you mean by skeleton JCl?
How to pass the parameter in parm using linkage section ? (syntax)?
How dummy is used in jcl?