Application Delivery Management
Application Modernization & Connectivity
CyberRes by OpenText
IT Operations Management
I have an existing application that uses Indexed Sequential files - IDXFORMAT(3), and they are approaching their size limit.
I need to continue to add additional records to the file.
By default Visual COBOL V2.3 creates indexed sequential files as IDXFORMAT(8) (large format),
in addition FILEMAXSIZE(8) is also set by default.
In order to convert existing files to other formats, use the Rebuild utility.
Rebuild is a file management utility invoked from the command prompt which enables you to:
Reorganize an indexed file
In the example below Rebuild is used to display information about the file MUSTOCK.DAT using the /n parameter :
Note: the file format is IDX-3 - IDXFORMAT(3).
In order to convert this file to IDXFORMAT(8) (large format) follow these steps:
Note: When working with Linux/UNIX:
mkdir new
rebuild MUSTOCK.DAT,new/MUSTOCK.DAT /t:MF8
This will create a new copy of the file as IDXFORMAT(8) in the new sub-directory:
Display information about the new file MUSTOCK.DAT using the /n parameter :
Note: the file format is IDX-8 - IDXFORMAT(8).
For further information regarding IDXFORMAT and FILEMAXSIZE, please refer to the product documentation.
For information with respect to File size limits for Server Express and Net Express please refer to this article.