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 |
How To move a value to an array using move verb?
How are the next sentence and continue different from each other?
what is the maximum error code in mainframe
What is link edit in cobol?
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
What does EXIT do ?
What is CALL statement in COBOL?
Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 Answers Bank Of America, Mind Tree,
Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?
Hi all, I have a following requirement to write the cobol program. I have to load the 129 variables from input sequential file which are in excel sheet to the cobol inernal table. and after loading into table i have to compare this data with the business file. here compare means controlling the data whether the format(numeric,alpha) is same in the business file and in the table??? i have the same data in input and business file. could anyone please give me any idea of the logic?// i have all the 129 different variables(129rows,1 column)is there .
What is sqlca and why is it needed in any cobol-db2 program?
What are the different forms of EVALUATE statement?