Explain the difference between various read and find statement and which one should be used when for better adabas performance?
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 |
How to pass the parameters from jcl to assembler program?
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????
Explain about base register?
What does LA R3,R3 ?
How are data passed from jcl parm to assembler program?
Explain about maximum displacement?
about maximum displacement and how to cross this limit.
how to retrieve the instream data in sysin?
How to initialize 20,000 bytes in the Assembler..
What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?
how to initialize a register to 0000?
What is the use of trt instruction?