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



What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?..

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

What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?..

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

Post New Answer

More JCL Interview Questions

What happens if both JOBLIB and STEPLIB is specified ?

8 Answers  


what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?

2 Answers   Verizon,


What is the use of disp parameter?

0 Answers  


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)

1 Answers  


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

0 Answers  


How many extents are possible for a sequential file ? For a VSAM file ?

3 Answers  


Give the syntax of job specifying jcl statement.

0 Answers  


what's the significance of freespace(0 0) and freespace(100 100)

3 Answers  


What are the parameters that are used in creating a gdg?

0 Answers  


How does jcl specify the job to the operating system?

0 Answers  


How do you restart a step in JCL?

12 Answers   HSBC,


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

0 Answers  


Categories