FPARMS and TABLES file parameters: Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Overview==
==Overview==
<p>Associated with each file are a number of parameters that determine its structure, define its privileges, and keep track of its status and usage. The categories of file parameters are:</p>
<p>
Associated with each file are a number of parameters that determine its structure, define its privileges, and keep track of its status and usage. The categories of file parameters are:</p>
<table>
<table>
<tr class="head">
<tr class="head">
Line 6: Line 7:
<th>Meaning</th>
<th>Meaning</th>
</tr>
</tr>
<tr>
<tr>
<td>FPARMS</td>
<td>FPARMS</td>
<td>File characteristics parameters summarize the organization, status, privileges, and field level security levels associated with the file.</td>
<td>File characteristics parameters summarize the organization, status, privileges, and field level security levels associated with the file.</td>
</tr>
</tr>
<tr>
<tr>
<td>TABLES</td>
<td>TABLES</td>
Line 15: Line 18:
</tr>
</tr>
</table>
</table>
<p>This page describes how to view, display, and set file parameters. For a listing of all the <var class="product">Model&nbsp;204</var> parameters, see [[List of Model 204 parameters]].</p>
<p>
This page describes how to view, display, and set file parameters. For a listing of all the <var class="product">Model&nbsp;204</var> parameters, see [[List of Model 204 parameters]].</p>


==File parameter access==
==File parameter access==
<p>The ability to access the file-related parameters described in this chapter is a privilege under the control of the PRIVDEF parameter. A file manager or system manager can restrict access to the file parameters of sensitive files to qualified users only. </p>
<p>
<p>If the X'0001' setting of PRIVDEF is on, the user can access the file-related parameters. If it is off, the user cannot access these parameters. For a complete description of the PRIVDEF parameter, see the <var class="product">Model&nbsp;204</var> Parameter and Command Reference.    </p>
The ability to access the file-related parameters described in this page is a privilege under the control of the <var>[[PRIVDEF parameter|PRIVDEF]]</var> parameter. A file manager or system manager can restrict access to the file parameters of sensitive files to qualified users only. </p>
<p>The CURFILE parameter is unaffected by the PRIVDEF setting.  </p>
<p>
<p>You can access file-related parameters through a command (VIEW or DISPLAY FILE), a User Language function ($VIEW), or a Host Language function (IFDISP or IFEPRM). Trying to access parameters without the correct privilege generates an error message from VIEW or DISPLAY FILE; $VIEW returns a null string and IFEPRM produces a return code of 4.       </p>
If the X'0001' bit of <var>PRIVDEF</var> is on, the user can access the file-related parameters. If it is off, the user cannot access these parameters. </p>
==Using the VIEW command==
<p>
<p>You can view the file characteristics or table parameters with the following command:</p>
The <var>[[CURFILE parameter|CURFILE]]</var> parameter is unaffected by the <var>PRIVDEF</var> setting.  </p>
===Syntax===
<p>
<p class="code"><var>VIEW {FPARMS | TABLES} </var>
You can access file-related parameters through a command (<var>VIEW</var> or <var>DISPLAY FILE</var>), a SOUL function (<var>$VIEW</var>), or a Host Language function (<var>IFDISP</var> or <var>IFEPRM</var>). Trying to access parameters without the correct privilege generates an error message from <var>VIEW</var> or <var>DISPLAY FILE</var>; <var>$VIEW</var> returns a null string, and <var>IFEPRM</var> produces a return code of 4. </p>
 
===Using the VIEW command===
<p>
You can display the file characteristics or table parameters with the following <var>VIEW</var> command options:</p>
<p class="syntax">VIEW {FPARMS | TABLES}  
</p>
</p>
===Example===
<p>
<p>In addition, view individual file parameters as shown in the following example:  </p>
You can view individual file parameters as shown in the following example:  </p>
<p class="code">VIEW FILEORG  
<p class="code"><b>&gt; VIEW FILEORG</b>
FILEORG X'03' (KEY REQUIRED,SORTED) FILE ORGANIZATION  
FILEORG X'03' (KEY REQUIRED,SORTED) FILE ORGANIZATION  
</p>
</p>
<p>You can also use the Host Language Interface function IFEPRM to examine individual parameter values, and use the User Language function $VIEW to return the value of a parameter to a User Language request.</p>
<p>
<p>The FILEORG parameter is a flag parameter, that is, a parameter whose value is the sum of the individual bits or flags that compose it. When a flag parameter is viewed, <var class="product">Model&nbsp;204</var> displays a phrase that indicates the individual flag settings. The parameter descriptions later in this chapter include a complete list of the flags that can be set. </p>
You can also use the Host Language Interface function <var>IFEPRM</var> to examine individual parameter values, and use the SOUL function <var>$VIEW</var> to return the value of a parameter to a SOUL request.</p>
<p>The previous FILEORG example indicates that the file is sorted (X'01') and that a sort key is required in every record (X'02'). Other file flag parameters include FISTAT, FOPT, OPENCTL, and SECTY.         </p>
<p>
==Using the DISPLAY command==
The <var>FILEORG</var> parameter is a flag, or bitmap, parameter, that is, a parameter whose value is the sum of the individual bits or flags that compose it. When a flag parameter is viewed, <var class="product">Model&nbsp;204</var> displays a phrase that indicates the individual flag settings. The individual parameter's description page (linked from [[List of Model 204 parameters]]) include a complete list of the flags that can be set. </p>
<p>Use the DISPLAY command (or Host Language Interface function IFDISP) to display file parameters. The following form of the DISPLAY command displays all the file characteristics (FPARMS) or file table (TABLES) parameters for the specified files or all the files the user has open:</p>
<p>
===Syntax===
The previous <var>FILEORG</var> example indicates that the file is sorted (X'01') and that a sort key is required in every record (X'02'). Other file flag parameters include <var>FISTAT</var>, <var>FOPT</var>, <var>OPENCTL</var>, and <var>SECTY</var>. </p>
<p class="code">DISPLAY FILE {(FPARMS) | (TABLES)}  
 
            {<var class="term">filename</var>[,<var class="term">filename</var>...] | ALL}  
===Using the DISPLAY command===
<p>
Use the <var>DISPLAY</var> command (or Host Language Interface function <var>IFDISP</var>) to display file parameters. The following form of the <var>DISPLAY</var> command displays all the file characteristics (<var>FPARMS</var>) or file table (<var>TABLES</var>) parameters for the specified files or all the files the user has open:</p>
 
<p class="code">DISPLAY FILE {(FPARMS) | (TABLES)} {<var class="term">filename</var>[,<var class="term">filename</var>...] | ALL}  
</p>
</p>
<p>Both FPARMS and TABLES can be specified in the same command. The DEFINITIONS option of DISPLAY also includes both types of file parameters. For further description of the DISPLAY options and capabilities, refer to [[ Defining Fields Manually#Defining Fields Manually|Defining Fields Manually]] and to the <var class="product">Model&nbsp;204</var> Parameter and Command Reference.</p>
<p>
Both <var>FPARMS</var> and <var>TABLES</var> can be specified in the same command. The <var>DEFINITIONS</var> option of <var>DISPLAY</var> also includes both types of file parameters. For further description of the <var>DISPLAY</var> options and capabilities, refer to [[Defining fields manually]] and to [[DISPLAY command]].</p>
 
==Setting file parameters==
==Setting file parameters==
<p>Some of the file parameters are view-only parameters; that is, you can examine them but not change them. Other parameters can be set only during file creation. You can specify the new value of the parameter in a PARAMETER statement that follows the CREATE command. (Refer to the description of file creation in [[ Creating Files Manually#Creating Files Manually|Creating Files Manually]].) Other parameters can be set only during file initialization. You can specify the value of the parameter in the INITIALIZE command (see [[ Initializing Files#Initializing Files|Initializing Files]]).     </p>
<p>
<p>You can reset some of the file parameters at any time using the RESET command, described in the <var class="product">Model&nbsp;204</var> Parameter and Command Reference. For example:</p>
Some of the file parameters are view-only parameters; that is, you can examine them but not change them. Other parameters can be set only during file creation. You can specify the new value of the parameter in a <var>PARAMETER</var> statement that follows the <var>CREATE</var> command. (Refer to the description of file creation in [[Creating a file]].) Other parameters can be set only during file initialization. You can specify the value of the parameter in the <var>INITIALIZE</var> command (see [[Initializing files]]). </p>
<p class="code"><var>RESET BRESERVE=50 </var>
<p>
You can reset some of the file parameters at any time using the <var>[[RESET command|RESET]]</var> command. For example:</p>
<p class="code">RESET BRESERVE=50 </p>
<p>
You must have ad hoc update privileges in order to reset file parameters. </p>
<p>
If a parameter that has a minimum value is set to a value less than the minimum allowed, <var class="product">Model&nbsp;204</var> sets the parameter to the minimum value and displays the following message:</p>
<p class="code">*** M204.1149: <var class="term">parameter</var> HAS BEEN SET TO ITS MINIMUM VALUE:<var class="term">value</var>  
</p>
</p>
<p>You must have ad hoc update privileges in order to reset file parameters.  </p>
<p>
<p>If a parameter that has a minimum value is set to a value less than the minimum allowed, <var class="product">Model&nbsp;204</var> sets the parameter to the minimum value and displays the following message:</p>
If a parameter that has a maximum value is set to a value greater than the maximum allowed, <var class="product">Model&nbsp;204</var> sets the parameter to the maximum value and displays the following message:</p>
<p class="code"><b></b>*** M204.1149: <var class="term">parameter</var> HAS BEEN SET TO ITS MINIMUM VALUE:<var class="term">value</var>
<p class="code">*** M204.1149: <var class="term">parameter</var> HAS BEEN SET TO ITS MAXIMUM VALUE:<var class="term">value</var>  
</p>
<p>If a parameter that has a maximum value is set to a value greater than the maximum allowed, <var class="product">Model&nbsp;204</var> sets the parameter to the maximum value and displays the following message:</p>
<p class="code"><b></b>*** M204.1149: <var class="term">parameter</var> HAS BEEN SET TO ITS MAXIMUM VALUE:<var class="term">value</var>  
</p>
</p>
==File characteristics parameters (FPARMS)==
==File characteristics parameters (FPARMS)==
<p>File characteristics parameters describe the status and organization of a <var class="product">Model&nbsp;204</var> file and the privileges associated with the file.</p>
<p>
==Viewing file characteristics parameters==
File characteristics parameters describe the status and organization of a <var class="product">Model&nbsp;204</var> file and the privileges associated with the file.</p>
<p>To view parameters in the file characteristics category: </p>
 
====Enter the following command:====
===Viewing file characteristics parameters===
<p>
To view parameters in the file characteristics category, enter the following command:</p>
<p class="code">VIEW FPARMS
<p class="code">VIEW FPARMS
</p>
</p>
<p>
<p>
Only the file manager can set file parameters (except for those that cannot be set). <var>CURFILE</var> is included in both this category and also in the file table parameters (TABLES). </p>
Only the file manager can set file parameters (except for those that cannot be set). <var>CURFILE</var> is included in both the <var>FPARMS</var> parameters and also in the file table parameters (<var>TABLES</var>). </p>


===View-only FPARMS===
===View-only FPARMS===
<p>The following FPARMS parameters cannot be set:</p>
<p>
<table>
The following <var>FPARMS</var> parameters cannot be set:</p>
<tr>
 
<td>CURFILE </td>
:<var>CURFILE</var>
<td>CURLOC</td>
:<var>CURLOC</var>
</tr>
:<var>FICREATE</var>
<tr>
:<var>FIFLAGS</var>
<td>FICREATE</td>
 
<td>FIFLAGS </td>
:<var>FIFORMAT</var>
</tr>
:<var>FITRANS</var>
<tr>
:<var>SECTY</var>
<td>FIFORMAT</td>
 
<td>FITRANS</td>
</tr>
<tr>
<td>SECTY</td>
<td>&nbsp;</td>
</tr>
</table>
===FPARMS set during file creation===
===FPARMS set during file creation===
<p>The following parameters can be set during file creation:</p>
<p>
<table>
The following parameters can be set during file creation:</p>
<tr>
 
<td>FILEORG</td>
:<var>FILEORG</var>
<td>IVERIFY </td>
:<var>IVERIFY</var>
<td>LANGFILE</td>
:<var>LANGFILE</var>
</tr>
 
</table>
===Resettable FPARMS set by Model 204===
===Resettable FPARMS set by Model 204===
<p>The following parameter is set by <var class="product">Model&nbsp;204</var> and can be reset by the file manager:</p>
<p>
<table>
The following parameter is set by <var class="product">Model&nbsp;204</var> and can be reset by the File Manager:</p>
<tr>
 
<td>FISTAT   </td>
:<var>FISTAT</var>
</tr>
 
</table>
===Resettable FPARMS set during file creation===
===Resettable FPARMS set during file creation===
<p>The following parameters can be set during file creation and can be reset by the file manager:</p>
<p>
<table>
The following parameters can be set during file creation and can be reset by the File Manager:</p>
<tr>
 
<td>ADDLVL</td>
:<var>ADDLVL</var>
<td>PRCLDEF</td>
:<var>FILEMODL</var>
</tr>
:<var>FOPT</var>
<tr>
:<var>FRCVOPT</var>
<td>FILEMODL</td>
:<var>OPENCTL</var>
<td>PRIVDEF</td>
:<var>PRCLDEF</var>
</tr>
 
<tr>
:<var>PRIVDEF</var>
<td>FOPT</td>
:<var>READLVL</var>
<td>READLVL</td>
:<var>SELLVL</var>
</tr>
:<var>UPDTLVL</var>
<tr>
:<var>VERIFY</var>
<td>FRCVOPT</td>
 
<td>SELLVL</td>
===Non-resettable FPARMS set during file initialization===
</tr>
<p>
<tr>
The following parameters are set during file initialization (the <var>[[INITIALIZE command|INITIALIZE]]</var> command), if applicable, and cannot be reset:</p>
<td>OPENCTL</td>
 
<td>UPDTLVL</td>
:<var>HASHKEY</var>
</tr>
:<var>RECSCTY</var>
<tr>
:<var>SORTKEY</var>
<td>&nbsp;</td>
 
<td>VERIFY </td>
</tr>
</table>
===Nonresettable FPARMS set during file initialization===
<p>The following parameters are set during file initialization (the INITIALIZE command), if applicable, and cannot be reset:</p>
<table>
<tr>
<td>HASHKEY</td>
<td>RECSCTY   </td>
</tr>
<tr>
<td>SORTKEY</td>
<td>&nbsp;</td>
</tr>
</table>
==File table parameters (TABLES)==
==File table parameters (TABLES)==
<p>File table parameters describe the characteristics of the various tables that make up a <var class="product">Model&nbsp;204</var> file. </p>
<p>
==Viewing file table parameters==
File table parameters describe the characteristics of the various tables that make up a <var class="product">Model&nbsp;204</var> file. </p>
<p>To view parameters in the file table category: </p>
 
====Enter the following command:====
===Viewing file table parameters===
<p class="code"><var>VIEW TABLES </var>
<p>
</p>
To view parameters in the file table category, enter the following command: </p>
<p>Only the file manager can set the file table parameters (except for those that cannot be set). CURFILE is included in this category and also in FPARMS.     </p>
<p class="code">VIEW TABLES </p>
==View-only TABLES parameters==
<p>
<p>The following TABLES parameters cannot be set:</p>
Only the File Manager can set the file table parameters (except for those that cannot be set). <var>CURFILE</var> is included in this category and also in <var>FPARMS</var>. </p>
 
===View-only TABLES parameters===
<p>
The following <var>TABLES</var> parameters cannot be set:</p>
<table>
<table>
<tr>
<tr>
Line 155: Line 157:
<td>DHIGHPG</td>
<td>DHIGHPG</td>
<td>HIGHSORT</td>
<td>HIGHSORT</td>
<td>OINBYTES</td>
<td>OINENTRY</td>
</tr>
</tr>
<tr>
<tr>
<td>ASIZE</td>
<td>ASIZE</td>
Line 163: Line 166:
<td>OVFLADD</td>
<td>OVFLADD</td>
</tr>
</tr>
<tr>
<tr>
<td>BHIGHPG</td>
<td>BHIGHPG</td>
Line 169: Line 173:
<td>OVFLDEL</td>
<td>OVFLDEL</td>
</tr>
</tr>
<tr>
<tr>
<td>BLOWPG</td>
<td>BLOWPG</td>
<td>EOVFLADD</td>
<td>EOVFLADD</td>
<td>OINODES</td>
<td>OIDEPTH</td>
<td>SPILLADD</td>
<td>SPILLADD</td>
</tr>
</tr>
<tr>
<tr>
<td>BQLEN</td>
<td>BQLEN</td>
Line 181: Line 187:
<td>SPILLDEL</td>
<td>SPILLDEL</td>
</tr>
</tr>
<tr>
<tr>
<td>BREUSED</td>
<td>BREUSED</td>
<td>EPGSUSED</td>
<td>EPGSUSED</td>
<td>OIDEPTH</td>
<td>OILPACT</td>
<td>XHIGHPG</td>
<td>XHIGHPG</td>
</tr>
</tr>
<tr>
<tr>
<td>CRETRIES</td>
<td>CRETRIES</td>
<td>EXTNADD</td>
<td>EXTNADD</td>
<td>OILPACT</td>
<td>OINBYTES</td>
<td>XQLEN</td>
<td>XQLEN</td>
</tr>
</tr>
<tr>
<tr>
<td>CURFILE</td>
<td>CURFILE</td>
<td>EXTNDEL</td>
<td>EXTNDEL</td>
<td>OINENTRY</td>
<td>OINODES</td>
<td>XREUSED</td>
<td>XREUSED</td>
</tr>
</tr>
<tr>
<tr>
<td>DACTIVE</td>
<td>DACTIVE</td>
Line 206: Line 216:
</tr>
</tr>
</table>
</table>
==TABLES parameters set during file creation==
 
<p>The following parameters can be set during file creation:</p>
===TABLES parameters set during file creation===
<p>
The following parameters can be set during file creation:</p>
<table>
<table>
<tr>
<tr>
<td>ASTRPPG</td>
<td>ASTRPPG</td>
<td>BSIZE               </td>
<td>BSIZE </td>
<td>PDSIZE</td>
<td><var>[[PDSIZE parameter|PDSIZE]]</var></td>
</tr>
</tr>
<tr>
<tr>
<td>ATRPG</td>
<td>ATRPG</td>
Line 219: Line 232:
<td>PDSTRPPG</td>
<td>PDSTRPPG</td>
</tr>
</tr>
<tr>
<tr>
<td>BEXTOVFL</td>
<td>BEXTOVFL</td>
Line 224: Line 238:
<td>RECPDOPT</td>
<td>RECPDOPT</td>
</tr>
</tr>
<tr>
<tr>
<td>BPGPMSTR</td>
<td>BPGPMSTR</td>
Line 229: Line 244:
<td>XRECPPG</td>
<td>XRECPPG</td>
</tr>
</tr>
<tr>
<tr>
<td>BPGPOVFL</td>
<td>BPGPOVFL</td>
Line 234: Line 250:
<td>XSIZE</td>
<td>XSIZE</td>
</tr>
</tr>
<tr>
<tr>
<td>BRECPPG</td>
<td>BRECPPG</td>
Line 240: Line 257:
</tr>
</tr>
</table>
</table>
==Resettable TABLES parameters set during file creation==
 
<p>The following parameters can be set during file creation and can be reset by the file manager:</p>
===Resettable TABLES parameters set during file creation===
<p>
The following parameters can be set during file creation and can be reset by the File Manager:</p>
<table>
<table>
<tr>
<tr>
Line 248: Line 267:
<td>XAUTOINC</td>
<td>XAUTOINC</td>
</tr>
</tr>
<tr>
<tr>
<td>BREUSE</td>
<td>BREUSE</td>
Line 253: Line 273:
<td>XRESERVE</td>
<td>XRESERVE</td>
</tr>
</tr>
<tr>
<tr>
<td>BRESERVE</td>
<td>BRESERVE</td>
Line 259: Line 280:
</tr>
</tr>
</table>
</table>
<p>&nbsp;</p>


[[Category:File management]]
[[Category:Model 204 files]]

Latest revision as of 19:27, 7 April 2015

Overview

Associated with each file are a number of parameters that determine its structure, define its privileges, and keep track of its status and usage. The categories of file parameters are:

Category Meaning
FPARMS File characteristics parameters summarize the organization, status, privileges, and field level security levels associated with the file.
TABLES File table parameters summarize information about the various tables that make up the file.

This page describes how to view, display, and set file parameters. For a listing of all the Model 204 parameters, see List of Model 204 parameters.

File parameter access

The ability to access the file-related parameters described in this page is a privilege under the control of the PRIVDEF parameter. A file manager or system manager can restrict access to the file parameters of sensitive files to qualified users only.

If the X'0001' bit of PRIVDEF is on, the user can access the file-related parameters. If it is off, the user cannot access these parameters.

The CURFILE parameter is unaffected by the PRIVDEF setting.

You can access file-related parameters through a command (VIEW or DISPLAY FILE), a SOUL function ($VIEW), or a Host Language function (IFDISP or IFEPRM). Trying to access parameters without the correct privilege generates an error message from VIEW or DISPLAY FILE; $VIEW returns a null string, and IFEPRM produces a return code of 4.

Using the VIEW command

You can display the file characteristics or table parameters with the following VIEW command options:

VIEW {FPARMS | TABLES}

You can view individual file parameters as shown in the following example:

> VIEW FILEORG FILEORG X'03' (KEY REQUIRED,SORTED) FILE ORGANIZATION

You can also use the Host Language Interface function IFEPRM to examine individual parameter values, and use the SOUL function $VIEW to return the value of a parameter to a SOUL request.

The FILEORG parameter is a flag, or bitmap, parameter, that is, a parameter whose value is the sum of the individual bits or flags that compose it. When a flag parameter is viewed, Model 204 displays a phrase that indicates the individual flag settings. The individual parameter's description page (linked from List of Model 204 parameters) include a complete list of the flags that can be set.

The previous FILEORG example indicates that the file is sorted (X'01') and that a sort key is required in every record (X'02'). Other file flag parameters include FISTAT, FOPT, OPENCTL, and SECTY.

Using the DISPLAY command

Use the DISPLAY command (or Host Language Interface function IFDISP) to display file parameters. The following form of the DISPLAY command displays all the file characteristics (FPARMS) or file table (TABLES) parameters for the specified files or all the files the user has open:

DISPLAY FILE {(FPARMS) | (TABLES)} {filename[,filename...] | ALL}

Both FPARMS and TABLES can be specified in the same command. The DEFINITIONS option of DISPLAY also includes both types of file parameters. For further description of the DISPLAY options and capabilities, refer to Defining fields manually and to DISPLAY command.

Setting file parameters

Some of the file parameters are view-only parameters; that is, you can examine them but not change them. Other parameters can be set only during file creation. You can specify the new value of the parameter in a PARAMETER statement that follows the CREATE command. (Refer to the description of file creation in Creating a file.) Other parameters can be set only during file initialization. You can specify the value of the parameter in the INITIALIZE command (see Initializing files).

You can reset some of the file parameters at any time using the RESET command. For example:

RESET BRESERVE=50

You must have ad hoc update privileges in order to reset file parameters.

If a parameter that has a minimum value is set to a value less than the minimum allowed, Model 204 sets the parameter to the minimum value and displays the following message:

*** M204.1149: parameter HAS BEEN SET TO ITS MINIMUM VALUE:value

If a parameter that has a maximum value is set to a value greater than the maximum allowed, Model 204 sets the parameter to the maximum value and displays the following message:

*** M204.1149: parameter HAS BEEN SET TO ITS MAXIMUM VALUE:value

File characteristics parameters (FPARMS)

File characteristics parameters describe the status and organization of a Model 204 file and the privileges associated with the file.

Viewing file characteristics parameters

To view parameters in the file characteristics category, enter the following command:

VIEW FPARMS

Only the file manager can set file parameters (except for those that cannot be set). CURFILE is included in both the FPARMS parameters and also in the file table parameters (TABLES).

View-only FPARMS

The following FPARMS parameters cannot be set:

CURFILE
CURLOC
FICREATE
FIFLAGS
FIFORMAT
FITRANS
SECTY

FPARMS set during file creation

The following parameters can be set during file creation:

FILEORG
IVERIFY
LANGFILE

Resettable FPARMS set by Model 204

The following parameter is set by Model 204 and can be reset by the File Manager:

FISTAT

Resettable FPARMS set during file creation

The following parameters can be set during file creation and can be reset by the File Manager:

ADDLVL
FILEMODL
FOPT
FRCVOPT
OPENCTL
PRCLDEF
PRIVDEF
READLVL
SELLVL
UPDTLVL
VERIFY

Non-resettable FPARMS set during file initialization

The following parameters are set during file initialization (the INITIALIZE command), if applicable, and cannot be reset:

HASHKEY
RECSCTY
SORTKEY

File table parameters (TABLES)

File table parameters describe the characteristics of the various tables that make up a Model 204 file.

Viewing file table parameters

To view parameters in the file table category, enter the following command:

VIEW TABLES

Only the File Manager can set the file table parameters (except for those that cannot be set). CURFILE is included in this category and also in FPARMS.

View-only TABLES parameters

The following TABLES parameters cannot be set:

ARETRIES DHIGHPG HIGHSORT OINENTRY
ASIZE DPGSUSED MSTRADD OVFLADD
BHIGHPG EHIGHPG MSTRDEL OVFLDEL
BLOWPG EOVFLADD OIDEPTH SPILLADD
BQLEN EOVFLDEL OILEAVES SPILLDEL
BREUSED EPGSUSED OILPACT XHIGHPG
CRETRIES EXTNADD OINBYTES XQLEN
CURFILE EXTNDEL OINODES XREUSED
DACTIVE FREESIZE    

TABLES parameters set during file creation

The following parameters can be set during file creation:

ASTRPPG BSIZE PDSIZE
ATRPG CSIZE PDSTRPPG
BEXTOVFL DSIZE RECPDOPT
BPGPMSTR ESIZE XRECPPG
BPGPOVFL FVFPG XSIZE
BRECPPG MVFPG  

Resettable TABLES parameters set during file creation

The following parameters can be set during file creation and can be reset by the File Manager:

BAUTOINC DAUTOINC XAUTOINC
BREUSE DPGSRES XRESERVE
BRESERVE DRESERVE XREUSE