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 |
COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
delete rules in db2
Suppose I have five jobs to do. But I want to hold one?
If I defined space as TRK(10,10) for the one file and lrecl = 4K then tell me how many record will vsam file will contain. will it 1,2,3,4,5 or how many,
I have a File that has duplicate records. I need only those records that occur more than thrice.
What is the parameter to be passed in the job card for the unlimited time , irrespective of the job class ?
HOw to submit a job from other user id.? for exp some other job name like "t4622sdx".now i want to submit that job from my user id?(we don't know that location at all Just we know job name)
what r the types of job control statements?
what is fixed length and variable length and difference between them
i want to avoid the positional parameter how to code it ?