Example Xfh2btr Configuration File

[X2B-DEFAULTS]
output:accelerated
i-o-shareable:accelerated
i-o-exclusive:accelerated
btrpage:2048
btrmaxrec:2000
[test1.dat]
output:exclusive
i-o-shareable:normal
btrpage:4096

The above is an example Xfh2btr configuration file which specifies the following:

  1. The default open mode for files opened OUTPUT is accelerated
  2. The default open mode for files opened I/O which are shareable is accelerated
  3. The default open mode for files opened I/O which are exclusive is accelerated
  4. The default page size to use when creating files is 2048 bytes
  5. The default maximum record length is 2000 bytes
  6. For the file test1.dat, OPEN OUTPUT operations open the file exclusively
  7. For the file test1.dat, OPEN I/O operations which are shareable use the normal open mode
  8. For the file test1.dat, the page size to use when creating the file is 4096 bytes