Explain complete concept of table handling in COBOL with an
example?
Answers were Sorted based on User's Feedback
Answer / sivakumar sekharannair
repeated occurance of a field in a file can be defined as a
table of occurance. for example the file has records of of
a student details. it has the following fields
student name
stud registration number
stud class
student mark1
student mark2
student mark3
student mark4
student mark5
first three fields will vary in number of bytes. but 4th to
8th fields will be having same number of bytes(same
information repeated). so when we usually define a layout
for the file we will follow the below mentioned layout.
01 stud-details.
05 stud-name pic x(20).
05 stud-reg-no pic 9(9).
05 stud-class pic 9(2).
05 stud-mark1 pic 9(3).
05 stud-mark2 pic 9(3).
05 stud-mark3 pic 9(3).
05 stud-mark4 pic 9(3).
05 stud-mark5 pic 9(3).
Here we can see that for marks we have five different
fields which is wastage of space. to prevent this there is
a concept called table . by this all the five marks field
can be defined using a single field.
01 stud-details.
05 stud-name pic x(20).
05 stud-reg-no pic 9(9).
05 stud-class pic 9(2).
05 stud-mark pic 9(3) occurs 5 times
occurs clause will occupy the value of stud-mark five times
which is equal to having the mark field defined five times.
| Is This Answer Correct ? | 69 Yes | 4 No |
What will happen if we generate GDG (+2) version without generating (+1) version?
Write down the divisions of cobol program?
where will u code file status ?
Why would you use find and get rather than to obtain?
How to find How Many Lines in Sysin DD * Parameter Thru Cobol Coding? If any one knows the Answer Please Reply .....Thanks From Shree
What is the difference between a binary search and a sequential search what are the pertinent cobol?
SIGN TRAILING SEPARATE field occupy ?
Have you code any new programs in COBOL ? What is the functionality of the programs?
can we read in input the file with a variable length ? please , how ..could you help me ?
COMP field occupy ?
How to open and see copy book ?
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.