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 |
What are the differences between COBOL and COBOL II?
how to convert the recors form vsam file to db2 table tru file aid
What is COMP SYNC?
what is search and searchall?what is the diffrence between them?give an best example?
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
What is 77 level used for ?
is it possible to rename 01 level?
What is the difference between Call and a Link?
is this below syntax correct? CALL 'subprg' using A,B Please help
Hi All, Can anyone tell me how we can MOVE value of a X(19) variable to a S9(17) COMP-3 variable? Answer with an Example will be of great help.
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?