Relative Record Data Set

A Relative Record Data Set (RRDS) is a type of data set organization used by the VSAM computer data storage system. Records are accessed based on their ordinal position in the file (relative record number, RRN). For example, the desired record to be accessed might be the 42nd record in the file out of 999 total.

The concept of RRDS is similar to sequential access method, but it can access with data in random access and dynamic access.

Structure

An RRDS consists of data records in sequence, with the record number indicating the record's logical position in the data set. A program can access records randomly using this positional number or access records sequentially. But unlike a Key Sequenced Data Set, an RRDS has no keys, so the program cannot access records by key value.

Keys may be used to access records in an RRDS by defining an alternate index.

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.