FILEORG parameter

From m204wiki
Revision as of 00:53, 28 February 2013 by Alex (talk | contribs) (Automatically generated page update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Summary

Default value
0
Parameter type
File
Where set
During file creation
Related products
All
Introduced
Model 204 V6.1 or earlier

Description

The file (Table B) organization

Valid settings of FILEORG are:

SettingMeaning
X'80'All nonpreallocated (non-OCCURS) fields are preceded by a field-value length byte. With a length byte on every field, even FLOAT, CODED or BINARY fields, several instructions and one IF test are eliminated from the internal field scan loop. Having a length byte also allows some simple compression of BINARY, CODED, and FLOAT values.
X'40'File skewing enabled. (This option is obsolete and no longer recommended by Rocket. See the Rocket Model 204 File Manager's Guide for a discussion of its history.)
X'20'Unordered file.
X'08'Hash key file.
X'04'Reuse record number (RRN). This option can be added to any other FILEORG option. If this option is set without the hash key (X'08') or sorted (X'01') options, the unordered option (X'20') is automatically set.

X'02'

Sort or hash key required in every record. (This option can be added to the X'08' and X'01' options.)
X'01'Sorted file.
X'00'Entry order file.