Problem:
Method to open a large data file with Net Express to view the contents.
Resolution:
Have the following section setup in the extfh.cfg file:
[XFH-DEFAULT]
FILEMAXSIZE=8
Where the FILEMAXSIZE parameter specifies the number of bytes used internally to store file offsets.
This also affects internal locking mechanisms: programs sharing the same file all need to use the same FILEMAXSIZE settings to ensure semaphores and record locks are handled correctly, thereby avoiding potential file corruption in shared files.
FILEMAXSIZE={4|8}
Default: 4
4
Limits file addressibility to 32 bit values which is compatible with earlier versions of Micro Focus products.
8
Allows up to 64 bit values for file addressing on Windows NT platforms when accessing the NTFS file system, but changes the underlying record locking mechanism. Therefore, if you are sharing very large files, that is files greater than 1Gb in size, all programs accessing the file must use FILEMAXSIZE set to 8 to avoid possible corruption problems.
