what is lrec=f,what is difference between f,fb,v,vb?what is
default value?how do we came to know that records are in
f,fb,v,vb?
Answers were Sorted based on User's Feedback
Answer / giri reddy
F-fixed unblocked,fb-fixed blocked
v-variable unblocked,vb-variable blocked
default value is u-undefined
we can see the description of data set.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / arthi
DCB=(RECFM=F,LRECL=80,BLKSIZE=800)
RECFM - to specify the record format
F-Fixed length record
V-Variable length record
FB-Fixed Block
VB-Variable Block
U-Undefined
for fixed length record the BLKSIZE is multiple of LRECL. For variable length records, BLKSIZE is multiple of (largest record+4)
| Is This Answer Correct ? | 5 Yes | 0 No |
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
How much salary you are expecting? If they ask in an interview, what we have to tell?
6 Answers Tech Mahindra, Wipro,
What are various search techniques in cobol? Explain.
tell me about examine inspect and evaluate ?
i have two file, each file having : file1 is having 2 fields field1 field2 file2 is having 3 fields field1 field2 field3 my req is to make it one file like: field1 field2 field1 field2 field3 if anyone know please send me syntax, i tried this with DFSORT but could not succeed.
hi, can you ppl tell me, how to check whether the rewrite we gave for the ksds file is successful or not in the program.? i gave rewrite, the rewrite code is executing and maxcc=0 but updation doenot happen in the file?
1.What is the default print format in cobol?
What is Alternate Index ? How is it different from regular index ?
is this below syntax correct? CALL 'subprg' using A,B Please help
Differentiate between structured cobol programming and object-oriented cobol programming.
Without using move verb how to move one variable to another.