What is the file organization clause ?
Answers were Sorted based on User's Feedback
Answer / pavan
File Organization defines what type of file it is. It can
be sequential(like PS or VSAM ESDS), indexed (like VSAM
KSDS) or Relative (like VSAM RRDS)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ms. stanley
FILE ORGANIZATION is used to declare, if the File is
SEQUENTIAL or INDEXED (VSAM or Non-VSAM Dataset)
| Is This Answer Correct ? | 1 Yes | 1 No |
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end
What is redefines clause in COBOL?
What is diff betn PS and ESDS file? What is the diffrent compiler options in cobol and there discription? What is retrive nth maximum salary from salary DB2 table. Can we redefine COM-3 variable with varchar variable?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
What was removed from COBOL in the COBOL II implementation?
can I copy book which contain db2 statment in procedure divion?
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
) How do u handle errors in BMS macro
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
i need the code for this program in cobol. 2 + 1 = 3 4+3=7 6+5=11 8+7=15 10+9=19
Write a program to concert an Indexed file into Sequential file?