What are the keywords associated with DCB? How can you
specify DCB information? What is the OS precedence for
obtaining that DCB information, ie. where does the system
look for it first?
Answers were Sorted based on User's Feedback
Answer / guest
The keywords associated with the DCB parameter are LRECL,
RECFM, BLKSIZE and DSORG. The DCB information can be
supplied in the DD statement. The system looks for DCB
information in the program code first.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pradeep salian
The keywords associated with the DCB parameter are LRECL,
RECFM, BLKSIZE and DSORG.
Ex://step1 DD DSN=dataset,
DISP=(NEW,CATLG,DELETE),
UNIT=unitname,
SPACE=(CYL,(30,30),RLSE),
DCB=(MODEL,RECFM=FB,LRECL=100,BLKSIZE=0)
The sysem looks for DCB information in the program code
first. DCB can be coded in DD statement
| Is This Answer Correct ? | 0 Yes | 0 No |
State the uses of syspring, sysin, sort fields, sum fields and dummy.
Explain about LMMFIND - find a library member
Hi, all Suppose i have 10 step in a job (s1,s2,s3,...s10) i want to execute step9 first and then step3 and i used the DPRTY for these steps. so what will happen to other steps? Will the get executed or only these two steps get executed?
what is the purpose of coding notify parameter in job statement?
what are the ways of passing data to a cobol program from jcl?
how to identify the file used in the JCL is an VSAM file. Just seeing the JCL code how can we track the file as VSAM file?
how to count the number of members in pds?
Hi, can we call catalog( say myproc } proc n times in jcl if so how please explain Thanks in advance
How to alter the parameters for the existing gdg?
I have four steps in jcl they are STEP1,STEP2,STEP3 and STEP4. Can it possible to run the reverse order like step4 first then step3,step2,step1?
What is the purpose of dd * statement in jcl?
What does a disposition of (new,catlg,keep) for a dsn mean?