What is the Record Address file. How can we use it in RPG
program?
Answers were Sorted based on User's Feedback
Answer / ipsita
A record address file contains either key-field limits or
relative record
numbers of records in a DISK file. By providing these
key-field limits or relative record numbers to the program,
a record
address file tells the program the records to read from the
DISK file and
the order in which to read them. A program can use no more
than one
record address file. Record address files must be further
defined on
extension specifications.
A record address file must be an input file. If it contains
key-field
limits, it must use the DISK or CONSOLE device and can be
used only with
indexed files. If it contains relative record numbers, it
must use only
the DISK device and can be used with sequential, direct, or
indexed files.
Record address files that contain relative record numbers
are called
addrout (address output) files, and they are produced by a
sort program
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / jai
Record Address File
===================
Using this We can get records by starting records and ending
records. Example A PF has 2,00,000 records. I want to read
1,00,001 to 2,00,000 means we use record address file
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / syam
Position 18 in "F Specification" = R
A record-address file is a sequentially organized file used
to select records from another file. Only one file in a
program can be specified as a record-address file.
| Is This Answer Correct ? | 1 Yes | 0 No |
Need a sql query: retrive all duplicate records in table
what is meant by record lock.how records are locked.what is the purpose of record lock.if records are locked what happens.how to find out which record is locked.
IN RLU what are the record level keyword is used?
How do you know if a record exists without doing a READ and CHAIN?
1.what are the ARITHMETIC EXPRESSIONS IN CL PGM? 2.How to PASSING PARAMETER TO CL PGM?
What is the syntax of passing parameters to a procedure by value?
why subproc not run in dftactgrp?????/plz explain
I want to declare the number of elements of an array dynamically in RPGLE ? Is it possible? If yes, then how do I do it ?
how do I declare a minor?
what is the difference between the procedure and module in ILERPG?
how to display all the members records in a physical file without using ovrdbf?
Suppose I have 3 jobs a b and c. I want to submit b after successful completion of a and want to submit c after successful completion of b. Without using job scheduler or job queue, how can I do that through cl program?