Explain the difference between various read and find statement and which one should be used when for better adabas performance?



Explain the difference between various read and find statement and which one should be used when for..

Answer / Hariom Tiwari

1. READ: The READ instruction is used to retrieve the next record in a sequence organization (e.g., EXTended Sequential, Relative Sequential). It is faster but does not allow for searching specific records.
2. FIND: The FIND instruction is used to locate a specific record based on its key. After finding the record, you can use GET or PUT instructions to access the data. FIND is slower than READ but allows for targeted record retrieval, which can improve performance in certain scenarios.nChoosing between READ and FIND depends on your application's requirements: if you need fast sequential access, use READ; if you need to locate a specific record, use FIND followed by GET or PUT.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Assembler Interview Questions

How to pass the parameters from jcl to assembler program?

1 Answers  


registers(0-15) ,where they are going be resides., does that mean here is it resides whether real or virtual memory? and why? then why we are assign even registers(0 to 6) for FP operations????

3 Answers  


Explain about base register?

1 Answers  


What does LA R3,R3 ?

1 Answers   Amdocs,


How are data passed from jcl parm to assembler program?

1 Answers  


Explain about maximum displacement?

1 Answers  


about maximum displacement and how to cross this limit.

2 Answers   EDS,


how to retrieve the instream data in sysin?

1 Answers   IBM,


How to initialize 20,000 bytes in the Assembler..

5 Answers   Amdocs, IBM,


What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?

1 Answers  


how to initialize a register to 0000?

1 Answers   IBM,


What is the use of trt instruction?

1 Answers  


Categories