what are difference organizations in cobol and access mode
in cobol? can you expalin what organization means while
declaring for ksds,esds,rrds?
Answer / ashok kumar reddy nagrimadugu
organization is a class which is to specify the type of file.
org'n can be sequential,indexed,relative.
acess mode is used to acess the records in
seqential,random,dynamic.
KSDS:org'n is indexed
ESDS:org'n is SEQUENTIAL
RRDS:org'n is ,relative.
| Is This Answer Correct ? | 17 Yes | 0 No |
What is an in line PERFORM? When would you use it? Anything else to say about it?
what is the difference b/w level no.01 & level no.77?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
Write a program to concert an Indexed file into Sequential file?
How to concatenation one or more string?
i WANT ALL ERROR codes IN CICS and DB2
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
What is SSRANGE, NOSSRANGE ?
TYPES OF SORTINGS. which is more prefarable.
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.