Managing fields manually: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
m (more conversion cleanup)
Line 1: Line 1:
==Overview==
==Overview==
<p>This chapter describes the [[REDEFINE command|REDEFINE]], [[DELETE command: Field|DELETE]], and [[RENAME FIELD command|RENAME]] commands, which allow you to redefine many field attributes, to delete a field's description and all its occurrences in the data, and to rename fields. For the complete syntax and description of these commands, please follow the links.</p>
<p>
<p>'''Note''' that new fields and Repeating Field Groups may may be added by the file manager at any time (although some attributes may not be assigned to these new fields (such as the [[Field design (File management)#Preallocated fields|OCCurs attribute]] to preallocate a field) once data has been added to the file. See [[Field design (File management)|Field design]] for more details.)</p> 
This page describes the <var>[[REDEFINE command|REDEFINE]]</var>, <var>[[DELETE command: Field|DELETE]]</var>, and <var>[[RENAME FIELD command|RENAME]]</var> commands, which allow you to redefine many field attributes, to delete a field's description and all its occurrences in the data, and to rename fields. For the complete syntax and description of these commands, please follow the links.</p>


<p>After creating a file and adding fields, you can perform the following field management tasks:</p>
<p class="note">'''Note:''' New fields and Repeating Field Groups may may be added by the file manager at any time (although some attributes may not be assigned to these new fields (such as the [[Field design (File management)#Preallocated fields|OCCurs attribute]] to preallocate a field) once data has been added to the file. See [[Field design (File management)|Field design]] for more details.)</p> 
 
<p>
After creating a file and adding fields, you can perform the following field management tasks:</p>
<ul>
<ul>
<li>Redefine fields</li>
<li>Redefine fields</li>
Line 11: Line 14:
</ul>
</ul>


<p>The operative word is 'can', which does not always mean that you should. If you have a large file, and are performing actions which cause Table B to be read in its entirety (the DELETE of a number of fields, or REDEFINING fields to be indexed for example) you should consider whether it may be more efficient to [[File reorganization and table compaction|reorganize]] the file.</p>
<p>
The operative word is "can," which does not always mean that you should. If you have a large file and are performing actions that cause Table B to be read in its entirety (the <var>DELETE</var> of a number of fields, or <var>REDEFINE</var> of fields to be indexed, for example), consider whether it may be more efficient to [[File reorganization and table compaction|reorganize]] the file.</p>


==Redefining fields==
==Redefining fields==
<p>The REDEFINE command and the IFRFLD Host Language Interface function allow you to alter a field definition without requiring that the file be reinitialized, with exceptions noted below.</p>
<p>
The <var>REDEFINE</var> command and the <var>IFRFLD</var> Host Language Interface function allow you to alter a field definition without requiring that the file be reinitialized, with exceptions noted below.</p>


<p>The format of REDEFINE is:</p>
<p>The format of <var>REDEFINE</var> is:</p>
<b>Syntax</b>
<b>Syntax</b>
<p class="code">REDEFINE [FIELD] {<var class="term">field_desc</var> [<var class="term">field_desc</var> ...] |
<p class="syntax">REDEFINE <span class="squareb">[</span>FIELD<span class="squareb">]</span> <span class="squareb">{</span><span class="term">field_desc</span> <span class="squareb">[</span><span class="term">field_desc</span> ...<span class="squareb">]</span> <span class="squareb">|</span> <span class="term">fieldname</span> WITH <span class="term">attribute</span> <span class="squareb">[</span><span class="term">attribute</span> ...<span class="squareb">]</span><span class="squareb">}</span>
 
  <var class="term">fieldname</var> WITH <var class="term">attribute</var> [<var class="term">attribute</var> ...]}
</p>
</p>
<p>where:</p>
<p>
<p>field_desc takes the form:</p>
Where:</p>
<p class="code"><var class="term">fieldname</var> [(<var class="term">attribute</var> [,[<var class="term">attribute</var> ...]])]
<p>
<var class="term">field_desc</var> takes the form:</p>
<p class="syntax"><span class="term">fieldname</span> <span class="squareb">[</span>(<span class="term">attribute</span> <span class="squareb">[</span>,<span class="squareb">[</span><span class="term">attribute</span> ...<span class="squareb">]</span>)<span class="squareb">]</span><span class="squareb">]</span>
</p>
</p>
<ul>
<ul>
<li>fieldname is the name of a field in the open <var class="product">Model&nbsp;204</var> file.</li>
<li><var class="term">fieldname</var> is the name of a field in the open <var class="product">Model&nbsp;204</var> file.</li>
<li>attribute is one of the attributes listed in [[#Redefining fields|Redefining fields]]. In the REDEFINE command, you need to specify only the attributes being changed for the field.</li>
 
<li><var class="term">attribute</var> is one of the attributes listed in [[#Redefining fields|Redefining fields]]. In the <var>REDEFINE</var> command, you need to specify only the attributes being changed for the field.</li>
</ul>
</ul>
<b>Example</b>
<b>Example</b>
<p>The following command changes two attributes of the previously defined CUSTID field:</p>
<p>
<p>Before:</p>
The following command changes two attributes of the previously defined CUSTID field:</p>
<p>
Before:</p>
<p class="code">DEFINE FIELD CUSTID WITH FRV KEY
<p class="code">DEFINE FIELD CUSTID WITH FRV KEY
</p>
</p>
<p>After:</p>
<p>
After:</p>
<p class="code">REDEFINE FIELD CUSTID WITH NON-FRV NON-KEY ORDERED CHAR
<p class="code">REDEFINE FIELD CUSTID WITH NON-FRV NON-KEY ORDERED CHAR
</p>
</p>


====Field attributes and the REDEFINE command====
====Field attributes and the REDEFINE command====
<p>Not all the field attributes that can be specified in the DEFINE command can be changed by a REDEFINE command. The following table summarizes the options.</p>
<p>
<p>See [[ Field design (File management)|Field design]] for a full discussion of the classifications and attributes.</p>
Not all the field attributes that can be specified in the DEFINE command can be changed by a REDEFINE command. The following table summarizes the options.</p>
<p>
See [[ Field design (File management)|Field design]] for a full discussion of the classifications and attributes.</p>


<table>
<table>
Line 51: Line 63:
<th>Notes</th>
<th>Notes</th>
</tr>
</tr>
<tr>
<tr>
<td>Indexing options</td>  
<td>Indexing options</td>  
<td>
<td>ORD CHAR or ORD NUM
<p>ORD CHAR or ORD NUM</p>
<p>KEY or NKEY</p>
<p>KEY or NKEY</p>
<p>FRV or NFRV</p>
<p>FRV or NFRV</p>
<p>RANGE or NRANGE</p>
<p>RANGE or NRANGE</p>
</td>
</td>
<td>Yes
<td>Yes</td>
</td>
<td>Model 204 adds (or removes) entries to the index when these are redefined. If the index fills up, Model 204 displays an error message and the redefine fails.
<td><p>Model 204 adds (or removes) entries to the index when<br>
<p>
these are redefined. If the index fills up, Model 204 displays<br>
an error message and the redefine fails.<br>
If TBO is enabed, the field is restored to its original status.<br>
If TBO is enabed, the field is restored to its original status.<br>
If TBO is disabled (FOPT=x'02') and the redefine fails, the file<br>
If TBO is disabled (FOPT=X'02') and the redefine fails, the file will be broken.</p>
will be broken.</p>
<p>
<p>Also, see limitation for INVISIBLE fields, below</p>
Also, see limitation for INVISIBLE fields, [[#Redefining the index on INVISIBLE fields|below]]</p>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>Data Type</td>  
<td>Data type</td>  
<td>
<td>All</td>
<p>All</p>
<td>No</td>
</td>
<td></td>
<td>No
</td>
<td>
</tr>
</tr>
<tr>
<tr>
<td rowspan=2>Data Content</td>  
<td rowspan=2>Data content</td>  
<td>
<td>FV or MV  
 
<p>FV or MV </p>
<p>UP or UE</p>
<p>UP or UE</p>
<p>DV</p>
<p>DV</p>
<p>ONE, EXONE or REPT</p>
<p>ONE, EXONE, or REPT</p>
<p>DEF or NDEF</p>
<p>DEF or NDEF</p>
</td>
</td>
<td>Yes
<td>Yes</td>
</td>
<td>COD or FRV fields only
<td><p> COD or FRV fields only</p>
<p>&nbsp; </p>
<p>. </p>
<p>ONE or EXONE fields only </p>
<p>ONE or EXONE fields only </p>
<p> </p>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<td>COD or NCOD
<p>COD or NCOD</p>
<p>OCC</p>
<p>OCC</p>
<p>LEN</p>
<p>LEN</p>
Line 105: Line 110:
<p>SD or SN</p>
<p>SD or SN</p>
</td>
</td>
<td>No
<td>No</td>
</td>
<td></td>
<td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>Concatenated Fields</td>  
<td>Concatenated fields</td>  
<td>
<td>All</td>
<p>All</p>
<td>No</td>
</td>
<td></td>
<td>No
</td>
<td>
</td>
</tr>
</tr>
<tr>
<tr>
<tr>
<tr>
<td>Automatic Fields</td>  
<td>Automatic fields</td>  
<td>
<td>All</td>
<p>All</p>
<td>No</td>
</td>
<td></td>
<td>No
</td>
<td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>Field and Content Constraints</td>  
<td>Field and content constraints</td>  
<td>
<td>All</td>
<p>All</p>
<td>Yes</td>
</td>
<td>See limitations on UNIQUE, [[#Redefining UNIQUE fields|below]].<br>
<td>Yes
The redefinitions do not validate existing occurrences, so if you have a field containing 9999 and then set INTLE to 1000, no error will occur.  
</td>
<td>See limitations on 'UNIQUE', below.<br>
The redefinitions do not validate existing occurrences, so<br>
if you have a field containing 9999 and then set INTLE to 1000<br>
no error will occur.  
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>Repeating Field Group</td>  
<td>Repeating Field Group</td>  
<td>
<td nowrap>FIELDGROUP attribute</td>
<p>FIELDGROUP attribute</p>
<td>No</td>
</td>
<td>Fields may not be redefined into or out of a field group.</td>
<td>No
</td>
<td>Fields may not be redefined into or out of a field group.  
</td>
</tr>
</tr>
</table>
</table>


<p>Changing a field's security level to 0 desecures the field. Refer to [[Security#Field-level security|Field-level security]] for more information.</p>
<p>
Changing a field's security level to 0 desecures the field. Refer to [[Security#Field-level security|Field-level security]] for more information.</p>
 
<p class="note"><b>Note:</b> Redefining fields may take a substantial amount of CPU time. When a KEY, NUMERIC RANGE, or ORDERED attribute is changed for a VISIBLE field, <var class="product">Model&nbsp;204</var> must modify the index entries that correspond to each occurrence of the field in Table B.  </p>
<p class="note"><b>Note:</b> Redefining fields may take a substantial amount of CPU time. When a KEY, NUMERIC RANGE, or ORDERED attribute is changed for a VISIBLE field, <var class="product">Model&nbsp;204</var> must modify the index entries that correspond to each occurrence of the field in Table B.  </p>
<p>When a field is redefined to add an indexed attribute, every record containing that field will have its index entry in Table C or D updated.</p>
<p>
When a field is redefined to add an indexed attribute, every record containing that field will have its index entry in Table C or D updated.</p>


===Redefining UNIQUE fields===
===Redefining UNIQUE fields===
<p>UNIQUE fields must be ORDERED. A field can be redefined as UNIQUE only if there are no nonunique values for that field in the file. </p>
<p>
UNIQUE fields must be ORDERED. A field can be redefined as UNIQUE only if there are no nonunique values for that field in the file. </p>


===Redefining the index on INVISIBLE fields===
===Redefining the index on INVISIBLE fields===
<p>If an INVISIBLE field is redefined to change or add an indexing attribute, such as KEY, ORD CHAR, or ORD NUM, only values of the field added to the file after the redefinition are recorded in the index. Values of the field existing before the redefinition cannot be generated into the indexes.</p>
<p>
<p>You cannot use the REDEFINE command to add a new index to a field with the INVISIBLE attribute that is in a file that has been used, so that MSTRADD statistic value parameter is set to nonzero. For an invisible field the REDEFINE command cannot specify the KEY, ORD CHAR, and ORD NUM attribute nor the NUMERIC RANGE attribute, unless the field was originally defined with that attribute.</p>
If an INVISIBLE field is redefined to change or add an indexing attribute, such as KEY, ORD CHAR, or ORD NUM, only values of the field added to the file after the redefinition are recorded in the index. Values of the field existing before the redefinition cannot be generated into the indexes.</p>
<p>If an INVISIBLE field is redefined to be FRV, only values of the field added to the file after the redefinition are recorded in Table A. Values of the field existing before the redefinition cannot be generated into Table A.  </p>
<p>
You cannot use the REDEFINE command to add a new index to a field with the INVISIBLE attribute that is in a file that has been used, so that MSTRADD statistic value parameter is set to nonzero. For an invisible field the REDEFINE command cannot specify the KEY, ORD CHAR, and ORD NUM attribute nor the NUMERIC RANGE attribute, unless the field was originally defined with that attribute.</p>
<p>
If an INVISIBLE field is redefined to be FRV, only values of the field added to the file after the redefinition are recorded in Table A. Values of the field existing before the redefinition cannot be generated into Table A.  </p>
 
===Redefining NUMERIC RANGE fields===
===Redefining NUMERIC RANGE fields===
<p><var class="product">Model&nbsp;204</var> does not allow fields that have the NUMERIC RANGE attribute to occur more than once in a record, and it does not permit the addition of subsequent occurrences to a record for NUMERIC RANGE fields. If a field is redefined to NUMERIC RANGE and <var class="product">Model&nbsp;204</var> detects that it is multiply occurring, any redefinition stops. If TBO is enabed, the field is restored to its original status. If TBO is disabled (FOPT=x'02') and the redefine fails, the file will be broken.    </p>
<p>
<var class="product">Model&nbsp;204</var> does not allow fields that have the NUMERIC RANGE attribute to occur more than once in a record, and it does not permit the addition of subsequent occurrences to a record for NUMERIC RANGE fields. If a field is redefined to NUMERIC RANGE and <var class="product">Model&nbsp;204</var> detects that it is multiply occurring, any redefinition stops. If TBO is enabed, the field is restored to its original status. If TBO is disabled (FOPT=x'02') and the redefine fails, the file will be broken.    </p>
 
===Redefining fields with security levels===
===Redefining fields with security levels===
<p>If a field that is being redefined has a security level defined for it (see [[Security]]), you must have a field security level that permits some type of access.</p>
<p>
If a field that is being redefined has a security level defined for it (see [[Security]]), you must have a field security level that permits some type of access.</p>


==Monitoring field retrievals==
==Monitoring field retrievals==
<p>If you do not know if a field will be used in retrievals, you can define it during the development process
<p>
If you do not know if a field will be used in retrievals, you can define it during the development process
as NON-ORDERED, NON-KEY and NON-RANGE. Then, monitor the use of the field in FIND statements using information
as NON-ORDERED, NON-KEY and NON-RANGE. Then, monitor the use of the field in FIND statements using information
written to the journal data set and redefine it as needed. </p>
written to the journal data set and redefine it as needed. </p>
<p>Whenever such a field is used in a retrieval, an MS line is written to the journal
<p>
Whenever such a field is used in a retrieval, an MS line is written to the journal
with the message:</p>
with the message:</p>


<p class="code">*** M204.0179: TABLE B SEARCH IMPLIED FOR FIELD =<var class="term">fieldname</var></p>
<p class="code">*** M204.0179: TABLE B SEARCH IMPLIED FOR FIELD =<var class="term">fieldname</var></p>


<p>This message indicates that a direct search of the data set might be required.
<p>
This message indicates that a direct search of the data set might be required.
It does not indicate whether the search was actually performed or how many
It does not indicate whether the search was actually performed or how many
records were searched (which depends on the results of any inverted
records were searched (which depends on the results of any inverted
conditions in the FIND statement... in other words, you may have excluded all records  
conditions in the FIND statement... in other words, you may have excluded all records  
from the search before needing to do a scan).</p>
from the search before needing to do a scan).</p>
<p>The DIRRCD statistic provides a count of the total number of Table B records
<p>
The DIRRCD statistic provides a count of the total number of Table B records
searched directly by FIND. DIRRCD appears in the journal and is accumulated
searched directly by FIND. DIRRCD appears in the journal and is accumulated
by file, by user, by request, and for the entire system. DIRRCD also can be
by file, by user, by request, and for the entire system. DIRRCD also can be
Line 196: Line 201:


==Deleting fields==
==Deleting fields==
<p>Use the DELETE FIELD command and the IFDELF Host Language Interface function to delete a field definition and all occurrences of data and indices for that field for every record in the file. The command is issued in the form: </p>
<p>
Use the DELETE FIELD command and the IFDELF Host Language Interface function to delete a field definition and all occurrences of data and indices for that field for every record in the file. The command is issued in the form: </p>
<b>Syntax</b>
<b>Syntax</b>
<p class="code">DELETE FIELD <var class="term">fieldname</var>
<p class="syntax">DELETE FIELD <span class="term">fieldname</span>
</p>
</p>
<p>where:</p>
<p>
<p>fieldname is the name assigned when the field was defined. </p>
Where:</p>
<p>A DELETE FIELD command cannot be used to delete record security fields or sort and hash key fields. If the field being deleted is in a file that has record security, you must have record security override privileges (see <b>See [[Security#Record security|record security]] </b>). If the field has a security level defined for it, you must have a field-level security level that permits update access.</p>
<p>
<p>Other uses of the DELETE command are discussed in the [[:Category:Commands|Commands category]], specifically:</p>
<var class="term">fieldname</var> is the name assigned when the field was defined. </p>
* [[DELETE command: Procedure|procedures]]
<p>
* [[DELETE command: Permanent group|permanent groups]]
A DELETE FIELD command cannot be used to delete record security fields or sort and hash key fields. If the field being deleted is in a file that has record security, you must have record security override privileges (see <b>See [[Security#Record security|record security]] </b>). If the field has a security level defined for it, you must have a field-level security level that permits update access.</p>
* [[DELETE command: Temporary group|temporary groups]]
<p>
Other uses of the DELETE command are discussed in the [[:Category:Commands|Commands category]], specifically:</p>
<ul>
<li>[[DELETE command: Procedure|procedures]]
<li>[[DELETE command: Permanent group|permanent groups]]
<li>[[DELETE command: Temporary group|temporary groups]]
</ul>
 
===DELETE FIELD with date-time stamp fields===
<p>
The DELETE FIELD command is prohibited for the DTSFN field in a file when the FOPT=X'10' is set.</p>


<b>DELETE FIELD with date-time stamp fields</b>
<p>The DELETE FIELD command is prohibited for the DTSFN field in a file when the FOPT=X'10' is set.</p>
==Renaming fields==
==Renaming fields==
<p>The RENAME command and the IFNFLD Host Language Interface function allow you to rename a field. The command is issued in the form:</p>
<p>
The RENAME command and the IFNFLD Host Language Interface function allow you to rename a field. The command is issued in the form:</p>
<b>Syntax</b>
<b>Syntax</b>
<p class="code">RENAME FIELD <var class="term">oldname</var>,<var class="term">newname</var>
<p class="syntax">RENAME FIELD <span class="term">oldname</span>,<span class="term">newname</span>
</p>
</p>
<p>where:</p>
<p>Where:</p>
<p>oldname is the current name of the field.</p>
<ul>
<p>newname is the name that you want to assign.      </p>
<li><var class="term">oldname</var> is the current name of the field.</p>
<p>This command is not executed if the old field name does not exist or if the new name cannot be added to the internal file dictionary, either because it already exists or because there is not enough space. </p>
<li><var class="term">newname</var> is the name that you want to assign.      </p>
<p>Note</p>
</ul>
<p>If a TABLE C FULL condition occurs during the renaming of a KEY or NUMERIC RANGE field, the file is left in a broken state. This happens even if the file is a transaction back out file. To prevent this condition, issue a TABLEC command to check for available space and/or back up the file before renaming a field. </p>
<p>
<p>Record security fields and sort and hash key fields can be renamed. If a field that is being renamed has a security level defined for it (see <b>See Field-level security</b>"), you must have a field security level that permits some type of access.</p>
This command is not executed if the old field name does not exist or if the new name cannot be added to the internal file dictionary, either because it already exists or because there is not enough space. </p>
<p>The RENAME command cannot be used to rename an INVISIBLE field. If you do want to rename an INVISIBLE field, delete all occurrences of the old field and then add them to the record under the new name.    </p>
<p class="note"><b>Note:<b>
<p>&nbsp;</p>
If a TABLE C FULL condition occurs during the renaming of a KEY or NUMERIC RANGE field, the file is left in a broken state. This happens even if the file is a transaction back out file. To prevent this condition, issue a TABLEC command to check for available space and/or back up the file before renaming a field. </p>
<p>Because of this danger, and because, on larger files the scan of Table B to change the field identifier may be lengthy (and, if renaming multiple fields are done one per pass), you may want to consider [[File reorganization and table compaction|reorganizing the file]] to rename fields.</p>
<p>
Record security fields and sort and hash key fields can be renamed. If a field that is being renamed has a security level defined for it (see <b>See Field-level security</b>"), you must have a field security level that permits some type of access.</p>
<p>
The RENAME command cannot be used to rename an INVISIBLE field. If you do want to rename an INVISIBLE field, delete all occurrences of the old field and then add them to the record under the new name.    </p>
<p>
Because of this danger, and because, on larger files the scan of Table B to change the field identifier may be lengthy (and, if renaming multiple fields are done one per pass), you may want to consider [[File reorganization and table compaction|reorganizing the file]] to rename fields.</p>


[[Category:File management]]
[[Category:File management]]

Revision as of 22:37, 24 February 2014

Overview

This page describes the REDEFINE, DELETE, and RENAME commands, which allow you to redefine many field attributes, to delete a field's description and all its occurrences in the data, and to rename fields. For the complete syntax and description of these commands, please follow the links.

Note: New fields and Repeating Field Groups may may be added by the file manager at any time (although some attributes may not be assigned to these new fields (such as the OCCurs attribute to preallocate a field) once data has been added to the file. See Field design for more details.)

After creating a file and adding fields, you can perform the following field management tasks:

  • Redefine fields
  • Monitor field retrievals
  • Deleting fields
  • Renaming fields

The operative word is "can," which does not always mean that you should. If you have a large file and are performing actions that cause Table B to be read in its entirety (the DELETE of a number of fields, or REDEFINE of fields to be indexed, for example), consider whether it may be more efficient to reorganize the file.

Redefining fields

The REDEFINE command and the IFRFLD Host Language Interface function allow you to alter a field definition without requiring that the file be reinitialized, with exceptions noted below.

The format of REDEFINE is:

Syntax

REDEFINE [FIELD] {field_desc [field_desc ...] | fieldname WITH attribute [attribute ...]}

Where:

field_desc takes the form:

fieldname [(attribute [,[attribute ...])]]

  • fieldname is the name of a field in the open Model 204 file.
  • attribute is one of the attributes listed in Redefining fields. In the REDEFINE command, you need to specify only the attributes being changed for the field.

Example

The following command changes two attributes of the previously defined CUSTID field:

Before:

DEFINE FIELD CUSTID WITH FRV KEY

After:

REDEFINE FIELD CUSTID WITH NON-FRV NON-KEY ORDERED CHAR

Field attributes and the REDEFINE command

Not all the field attributes that can be specified in the DEFINE command can be changed by a REDEFINE command. The following table summarizes the options.

See Field design for a full discussion of the classifications and attributes.

Field attributes and the REDEFINE command
Field classification Attributes Allowed? Notes
Indexing options ORD CHAR or ORD NUM

KEY or NKEY

FRV or NFRV

RANGE or NRANGE

Yes Model 204 adds (or removes) entries to the index when these are redefined. If the index fills up, Model 204 displays an error message and the redefine fails.

If TBO is enabed, the field is restored to its original status.
If TBO is disabled (FOPT=X'02') and the redefine fails, the file will be broken.

Also, see limitation for INVISIBLE fields, below

Data type All No
Data content FV or MV

UP or UE

DV

ONE, EXONE, or REPT

DEF or NDEF

Yes COD or FRV fields only

 

ONE or EXONE fields only

COD or NCOD

OCC

LEN

PAD

SD or SN

No
Concatenated fields All No
Automatic fields All No
Field and content constraints All Yes See limitations on UNIQUE, below.

The redefinitions do not validate existing occurrences, so if you have a field containing 9999 and then set INTLE to 1000, no error will occur.

Repeating Field Group FIELDGROUP attribute No Fields may not be redefined into or out of a field group.

Changing a field's security level to 0 desecures the field. Refer to Field-level security for more information.

Note: Redefining fields may take a substantial amount of CPU time. When a KEY, NUMERIC RANGE, or ORDERED attribute is changed for a VISIBLE field, Model 204 must modify the index entries that correspond to each occurrence of the field in Table B.

When a field is redefined to add an indexed attribute, every record containing that field will have its index entry in Table C or D updated.

Redefining UNIQUE fields

UNIQUE fields must be ORDERED. A field can be redefined as UNIQUE only if there are no nonunique values for that field in the file.

Redefining the index on INVISIBLE fields

If an INVISIBLE field is redefined to change or add an indexing attribute, such as KEY, ORD CHAR, or ORD NUM, only values of the field added to the file after the redefinition are recorded in the index. Values of the field existing before the redefinition cannot be generated into the indexes.

You cannot use the REDEFINE command to add a new index to a field with the INVISIBLE attribute that is in a file that has been used, so that MSTRADD statistic value parameter is set to nonzero. For an invisible field the REDEFINE command cannot specify the KEY, ORD CHAR, and ORD NUM attribute nor the NUMERIC RANGE attribute, unless the field was originally defined with that attribute.

If an INVISIBLE field is redefined to be FRV, only values of the field added to the file after the redefinition are recorded in Table A. Values of the field existing before the redefinition cannot be generated into Table A.

Redefining NUMERIC RANGE fields

Model 204 does not allow fields that have the NUMERIC RANGE attribute to occur more than once in a record, and it does not permit the addition of subsequent occurrences to a record for NUMERIC RANGE fields. If a field is redefined to NUMERIC RANGE and Model 204 detects that it is multiply occurring, any redefinition stops. If TBO is enabed, the field is restored to its original status. If TBO is disabled (FOPT=x'02') and the redefine fails, the file will be broken.

Redefining fields with security levels

If a field that is being redefined has a security level defined for it (see Security), you must have a field security level that permits some type of access.

Monitoring field retrievals

If you do not know if a field will be used in retrievals, you can define it during the development process as NON-ORDERED, NON-KEY and NON-RANGE. Then, monitor the use of the field in FIND statements using information written to the journal data set and redefine it as needed.

Whenever such a field is used in a retrieval, an MS line is written to the journal with the message:

*** M204.0179: TABLE B SEARCH IMPLIED FOR FIELD =fieldname

This message indicates that a direct search of the data set might be required. It does not indicate whether the search was actually performed or how many records were searched (which depends on the results of any inverted conditions in the FIND statement... in other words, you may have excluded all records from the search before needing to do a scan).

The DIRRCD statistic provides a count of the total number of Table B records searched directly by FIND. DIRRCD appears in the journal and is accumulated by file, by user, by request, and for the entire system. DIRRCD also can be displayed by the TIME command.

This technique should be done with care, and probably only in development and testing, as requests where DIRRCD exceed the MBSCAN parameter will either produce a continuation prompt, or if running under an Application Subsystem, be cancelled.

Deleting fields

Use the DELETE FIELD command and the IFDELF Host Language Interface function to delete a field definition and all occurrences of data and indices for that field for every record in the file. The command is issued in the form:

Syntax

DELETE FIELD fieldname

Where:

fieldname is the name assigned when the field was defined.

A DELETE FIELD command cannot be used to delete record security fields or sort and hash key fields. If the field being deleted is in a file that has record security, you must have record security override privileges (see See record security ). If the field has a security level defined for it, you must have a field-level security level that permits update access.

Other uses of the DELETE command are discussed in the Commands category, specifically:

DELETE FIELD with date-time stamp fields

The DELETE FIELD command is prohibited for the DTSFN field in a file when the FOPT=X'10' is set.

Renaming fields

The RENAME command and the IFNFLD Host Language Interface function allow you to rename a field. The command is issued in the form:

Syntax

RENAME FIELD oldname,newname

Where:

  • oldname is the current name of the field.

  • newname is the name that you want to assign.

This command is not executed if the old field name does not exist or if the new name cannot be added to the internal file dictionary, either because it already exists or because there is not enough space.

Note: If a TABLE C FULL condition occurs during the renaming of a KEY or NUMERIC RANGE field, the file is left in a broken state. This happens even if the file is a transaction back out file. To prevent this condition, issue a TABLEC command to check for available space and/or back up the file before renaming a field.

Record security fields and sort and hash key fields can be renamed. If a field that is being renamed has a security level defined for it (see See Field-level security"), you must have a field security level that permits some type of access.

The RENAME command cannot be used to rename an INVISIBLE field. If you do want to rename an INVISIBLE field, delete all occurrences of the old field and then add them to the record under the new name.

Because of this danger, and because, on larger files the scan of Table B to change the field identifier may be lengthy (and, if renaming multiple fields are done one per pass), you may want to consider reorganizing the file to rename fields.