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 |
is there any way to execute more than one proc in the same exec statement at the same time..?
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
how many max steps can we use in a job? pls answer to my question
Can we change the LIMIT of GDG?
what is use of dsn parameter in dd statement?
Explain the function of a dd statement?
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
if we give TIME=0 how many sec that job/step
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?
JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?
what do you mean By spooling? Expand SPOOL?
what is the purpose of coding class parameter in job statement?