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



What are the keywords associated with DCB? How can you specify DCB information? What is the OS prec..

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

What are the keywords associated with DCB? How can you specify DCB information? What is the OS prec..

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

Post New Answer

More JCL Interview Questions

what are the options in file-aid to edit vsam dataset and to compare data sets.

2 Answers   Ocwen,


What 3 guidelines do we have to follow when concatenating DD statements?

3 Answers  


In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??

2 Answers   CSC,


what happens in conversion stage in job processing?

0 Answers   IBM,


What is the meaning of the EXEC statement keyword, COND? What is its syntax?

2 Answers  






If job is submitted with typerun = hold then how can we submit the same job?

3 Answers   Wipro,


There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?

11 Answers   IBM,


what is the cond=even only

4 Answers   EDS,


1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat

1 Answers   Tesco,


In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04

3 Answers   Patni,


how many types of sorts are there in jcl?

2 Answers   IBM,


How do you submit a JCL under CICS environment ?

5 Answers   Wipro,


Categories