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?
Answer Posted / 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 |
Post New Answer View All Answers
A table has two indexes defined. Which one will be used by the SEARCH?
What are the different rules of SORT operation?
Name the sections present in data division.
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
) How do u handle errors in BMS macro
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What rules are followed by the search verb.
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
) how do u code after getting data?
What are different data types in cobol?
Which Search verb is equivalent to PERFORM…VARYING?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
Explain how you can characterize tables in cobol?
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?