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 happens if both JOBLIB and STEPLIB is specified ?
what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
What is the use of disp parameter?
i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
How many extents are possible for a sequential file ? For a VSAM file ?
Give the syntax of job specifying jcl statement.
what's the significance of freespace(0 0) and freespace(100 100)
What are the parameters that are used in creating a gdg?
How does jcl specify the job to the operating system?
How do you restart a step in JCL?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375