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 |
i have 3 steps in my jcl, where i want to run only one step at a time depending on the variable. How should i give the condition statement... I have tried this with two steps which is working but not able to add condn for the 3rd step. can anyone help me... I want to know the cond stmt which i can code in step 3 and step4, so that only either step2 or step3 or step4 executes
Max. No of DD statements in a job ?
How do you access an uncatalogued dataset in a jcl?
How are datasets concatenated?
proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
In job processing, what happens in execution stage?
What are SD37, SB37, SE37 abends?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
I have a sequential file in which there are 50 records. Now I want to copy all the 50 records in the reverse order into a new file? The last record in the original file should be the first record in the new file. How can I do it?
How to find out the number of records in a file using JCL
If job is submitted with typerun = hold then how can we submit the same job?