What is the difference between READ BY ISN and FIND
Answers were Sorted based on User's Feedback
Answer / rashmi
Read By ISN:-
It reads the adabas file as per the ISN sequence. User
should know the ISN to fetch the record.
FIND:-
It finds the record from the adabas file as per the
descriptor value provided by the user. No need to know the
ISN value.
But both will provide output in ISN sequence.
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / kazim zaidi
Read by ISN i.e. Read Physical
File read in sequential order
you don't need to know the ISN
However, GET #ISN - you need to know ISN
Usually you read by Physical or by Descriptor, if the record meets certain criteria for update, record is read using GET followed by UPDATE (or DELETE).
FIND - Finds record based on the Descriptor value, if partial value given it creates a loop.
If you know the unique Descriptor value you can also code
FIND(1) filename ....
just to retrieve one record
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain how to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?
What is cobol coding sheet?
Is it possible to code GOTO statement in NATURAL? if yes please provide the syntax of the same
Explain adabas basic concepts. Like inverted list, address converter ,data storage?
Explain difference between escape(top or bottom) and escape immediate(top or bottom?
How to receive data passed through jcl parm parameter in a natural program?
why do we use file-aid for seqential files?
Tell me what type of files we can process thru file-aid?
What is the difference between READ BY ISN and FIND
Explain the data storage?
In a Natural program i used the below code for report FORMAT LS=132 PS=60 And down the line I want to change either LS/PS like FORMAT LS=120 PS=50, is it possible? How it will work?
What happens when you issue a ESCAPE ROUTINE in a program ? Will there be any compilation /Run time error.