What is the meaning of data definition name (ddname) and
dataset name (dsname) in the DD statement?
Answers were Sorted based on User's Feedback
Answer / guest
Data definition name is the eight character designation
after the // of the DD statement. It matches the internal
name specified in the steps executing program. In COBOL
that's the name specified after the ASSIGN in the SELECT
ASSIGN statement. Dataset name is the operating system (MVS)
name for the file.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / sunitha
Data Definition name (ddname) is a eight character name
used to give the name to the DD statement. In COBOL, In
ENVIRONMENT DIVISION , INPUT-OUTPUT SECTION, FILE-CONTROL
paragraph, a SELECT statement defines a file name and
assigns a device name to it where the device name is the
ddname that is coded in the JCL.
Dataset name(dsname) is the operating system(MVS) name for
the file.
| Is This Answer Correct ? | 7 Yes | 1 No |
what is static and dynamic call with examples?
How to identify where file is empty or not? How many ways are there to identifying?
Explain about Specifying compiler options in the PROCESS (CBL) statement
What is GDG?
jcl is like a complier....?
How to send different PARM values based on the any condition to the program in a JCL? For example :- If the time is before 12:00 pm, I want to send "A" to some program and if it past 12:00 pm , I want to send "B" as a PARM value to that program. How to do it thur JCL only?
Explain dd statement in jcl?
Can we change the LIMIT of GDG?
How do you designate a comment in JCL?
What does SYSIN * indicate?
FOR a GDG, the book by 'SABA ZAMEER' says 'We can NOT ALTER the LIMIT parameter after it is defined'. (p-211). But many persons have written that it can be changed, which one is true ?
Is it possible to left uncode disp? If yes, how?