what is the difference between read and find ?
Answers were Sorted based on User's Feedback
Answer / sundar selvaraj
- Read is a sequential operation whereas FIND is a random
search.
- Read returns records in the order of descriptor whereas
FIND returns records records in the ISN order
- Though both READ & FIND intiate a processing loop, READ
command returns only *COUNTER and *ISN. FIND returns
*NUMBER, *COUNTER AND *ISN
- Dynamic change of read direction is possible with READ.
This is not possible with FIND.
- Read is considered efficient for a large number of
records. FIND is efficient for a smaller number of records.
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / guest
One difference is read after readin the record displays
them in sorted order of the descriptor but in case of find
the records are in sorted order of ISN
| Is This Answer Correct ? | 4 Yes | 4 No |
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?
Explain difference between read work file 1 and read work file once? Why we are using work file once?
what type of files we use in file-aid
difference between read(1) and read work file once ?
Explain how to ftp the natural program to desktop? (From mainframe to pc), is it possible?
Explain difference between read(1) and read work file once?
What is the difference between External subroutine and subprogram?
What exactly is a hyperdescriptor? How does it work?
what r the quality process in development
If the number of parameter is more than the expected then NAT0919 error is displayed. How many parameter are allowed in a CALL and CALLNAT statement?
What is a hyperdescriptor?
Which is more efficient - the external subroutine or a copycode coded in to a NATURAL program? And Why?