Defining fields manually: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:
<p>where:</p>
<p>where:</p>
<p>name is a 1 to 255 character name that must begin with a letter and can contain any alphanumeric characters, including spaces, except:</p>
<p>name is a 1 to 255 character name that must begin with a letter and can contain any alphanumeric characters, including spaces, except:</p>
<p class="code"> ??
<p class="code">??
?$
?$
?&amp;
?&amp;
Line 23: Line 23:
</p>
</p>
<p>Specify as many field attributes as needed from [[Field Attributes|Field attributes]]. For each attribute pair shown in the list, only one of the alternatives can be specified; conflicting attributes, such as KEY and NON-KEY, cannot be used together in a single description.</p>
<p>Specify as many field attributes as needed from [[Field Attributes|Field attributes]]. For each attribute pair shown in the list, only one of the alternatives can be specified; conflicting attributes, such as KEY and NON-KEY, cannot be used together in a single description.</p>
<p>Note</p>
<p class="note"><b>Note:</b>  
<p>Every attribute has a default value. Therefore, you only need to specify the attribute if it is not the default.</p>
Every attribute has a default value. Therefore, you only need to specify the attribute if it is not the default.</p>
 
===When to use the FIELD keyword===
===When to use the FIELD keyword===
<p>The keyword FIELD is required before field names that begin with the word FIELD, PRINTER, or DATASET. It is optional with other field names. If FIELD is specified, only one field can be defined or redefined per command. For example:</p>
<p>The keyword FIELD is required before field names that begin with the word FIELD, PRINTER, or DATASET. It is optional with other field names. If FIELD is specified, only one field can be defined or redefined per command. For example:</p>
Line 33: Line 34:
<p class="code">DEFINE FIELD FIELD LOCATION
<p class="code">DEFINE FIELD FIELD LOCATION
</p>
</p>
===Defining sort key, hash key, and record security fields===
===Defining sort key, hash key, and record security fields===
<p>The DEFINE command cannot be used to define sort key fields, hash key fields, or record security fields. These fields can be defined only with the INITIALIZE command, described in [[ Initializing Files#INITIALIZE command|INITIALIZE command]], and the appropriate parameter settings.</p>
<p>The DEFINE command cannot be used to define sort key fields, hash key fields, or record security fields. These fields can be defined only with the <var>[[Initializing Files#INITIALIZE command|INITIALIZE]]</var> command and the appropriate parameter settings.</p>
 
===Field attributes===
===Field attributes===
<p>The attributes listed in the following tables are introduced in [[Field Design (File Management)|Field Design]], along with a summary of the rules follow in assigning them. A number of the attributes have additional optional attributes (in particular, see [[Field Design (File Management)#ORDERED field definition|the ORDERED attribute]]) that can be specified with the [[DEFINE FIELD command]], which are also described in [[Field Design (File Management)|Field Design]].</p>
<p>The attributes listed in the following tables are introduced in [[Field Design (File Management)|Field Design]], along with a summary of the rules follow in assigning them. A number of the attributes have additional optional attributes (in particular, see [[Field Design (File Management)#ORDERED field definition|the ORDERED attribute]]) that can be specified with the [[DEFINE FIELD command]], which are also described in [[Field Design (File Management)|Field Design]].</p>


====Indexing attributes====
====Indexing attributes====
Line 46: Line 48:
<caption>Indexing field attributes with the DEFINE command</caption>
<caption>Indexing field attributes with the DEFINE command</caption>
<tr class="head">
<tr class="head">
<th>Attribute</th>
<th>Attribute</th><th>Abbreviation</th><th>Default</th>
<th>Abbreviation</th>
<th>Default</th>
</tr>
</tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>ORDERED CHARACTER</p>
ORDERED CHARACTER<p>NON-ORDERED</p>
<p>NON-ORDERED</p>
</td>
</td>
<td rowspan="2">
<td>
<p>ORD CHAR</p>
ORD CHAR<p>NORD</p>
<p>NORD</p>
</td>
</td>
<td rowspan="2">NON-ORDERED</td>
<td>NON-ORDERED</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
ORDERED NUMERIC<p>NON-ORDERED</p>
<td rowspan="2">
<p>ORDERED NUMERIC</p>
<p>NON-ORDERED</p>
</td>
</td>
<td rowspan="2">
<td>
<p>ORD NUM</p>
ORD NUM<p>NORD</p>
<p>NORD</p>
</td>
</td>
<td rowspan="2">NON-ORDERED</td>
<td>NON-ORDERED</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
KEY<p>NON-KEY</p>
<td rowspan="2">
<p>KEY</p>
<p>NON-KEY</p>
</td>
</td>
<td rowspan="2">
<td>&nbsp;
<p>-</p>
<p>NKEY</p>
<p>NKEY</p>
</td>
</td>
<td rowspan="2">NON-KEY</td>
<td>NON-KEY</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
FRV<p>NON-FRV</p>
<td rowspan="2">
<p>The ORD attribute is preferable; shown for compatibility.</p>
<p><var>FRV</var></p>
<p><var>NON-FRV</var></p>
<p><var>The ORD attribute is preferable; shown for compatibility. </var></p>
</td>
</td>
<td rowspan="2">
<td>&nbsp;
<p><var>-</var></p>
<p>NFRV</p>
<p><var>NFRV</var></p>
</td>
</td>
<td rowspan="2"><var>NON-FRV</var></td>
<td>NON-FRV</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
[NUMERIC] RANGE<p>NON-RANGE</p>
<td rowspan="2">
<p>Obsolete; supported for compatibility.</p>
<p><var>[NUMERIC] RANGE</var></p>
<p><var>NON-RANGE</var></p>
<p><var>Obsolete; supported for compatibility. </var></p>
</td>
</td>
<td rowspan="2">
<td>
<p><var>NR</var></p>
NR<p>NNR</p>
<p><var>NNR</var></p>
</td>
</td>
<td rowspan="2"><var>NON-RANGE</var></td>
<td>NON-RANGE</td>
</tr>
<tr>
</tr>
</tr>
</table>
</table>


====Data types====
====Data types====
 
<p>
<p>In most cases, only one of these may be specified on any field (see the UTF attributes). The default is STRING</p>
In most cases, only one of these may be specified on any field (see the UTF attributes). The default is STRING</p>
 


<table>
<table>
Line 142: Line 121:
</tr>
</tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>BINARY-LARGE-OBJECT</p>
BINARY-LARGE-OBJECT<p>CHARACTER-LARGE-OBJECT</p>
<p>CHARACTER-LARGE-OBJECT</p>
</td>
</td>
<td rowspan="2">
<td>
<p>BLOB</p>
BLOB<p>CLOB</p>
<p>CLOB</p>
</td>
</td>
<td rowspan="2">
<td>
<p>must have Table E enabled</p>
Must have Table E enabled<p></p>
<p></p>
</td>
</td>
</tr>
</tr>
<tr></tr>
<tr>
<tr>
<td>FLOAT</td>
<td>FLOAT</td>
<td>FLT</td>
<td>FLT</td>
<td>must have LEN specified</td>
<td>Must have LEN specified</td>
</tr>
</tr>
<tr>
<tr>
Line 167: Line 142:
</tr>
</tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>UTF-8</p>
UTF-8<p>UTF-16</p>
<p>UTF-16</p>
</td>
</td>
<td rowspan="2">
<td>
<p>UTF8</p>
UTF8<p>UTF16</p>
<p>UTF16</p>
</td>
</td>
<td rowspan="2">
<td>
<p>Must be used in conjunction with the BLOB or CLOB attribute</p>  
Must be used in conjunction with the BLOB or CLOB attribute<p></p>
</td>
</td>
</tr>
</tr>
<tr></tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>VISIBLE</p>
VISIBLE<p>INVISIBLE</p>
<p>INVISIBLE</p>
</td>
</td>
<td rowspan="2">
<td>
<p>VIS</p>
VIS<p>INV</p>
<p>INV</p>
</td>
</td>
<td rowspan="2"></td>
</tr>
<tr>
</tr>
<tr>
</tr>
</tr>
</table>
</table>


==== Data Content Attributes====
==== Data content attributes====
 
<table>
<table>
<caption>Data content field attributes with the DEFINE command</caption>
<caption>Data content field attributes with the DEFINE command</caption>
Line 207: Line 171:
</tr>
</tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>UPDATE IN PLACE</p>
UPDATE IN PLACE<p>UPDATE AT END</p>
<p>UPDATE AT END</p>
</td>
</td>
<td rowspan="2">
<td>
<p>UP</p>
UP<p>UE</p>
<p>UE</p>
</td>
</td>
<td rowspan="2">UPDATE IN PLACE</td>
<td>UPDATE IN PLACE</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<p>LENGTH <var class="term">m</var></p>
LENGTH <var class="term">m</var>
</td>
</td>
<td>
<td>
<p>LEN <var class="term">m</var></p>
LEN <var class="term">m</var>
</td>
</td>
<td>
<td>
<p>No preallocated length</p>
No preallocated length
</td>
</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
Line 236: Line 194:
<td>OCC n</td>
<td>OCC n</td>
<td>No preallocated occurrences</td>
<td>No preallocated occurrences</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<p>PAD <var class="term">character</var></p>
PAD <var class="term">character</var>
</td>
</td>
<td>
<td>
<p></p>
&nbsp;
</td>
</td>
<td>
<td>
<p>Character = X'00'</p>
<var class="term">character</var> = X'00'
</td>
</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
DEFERRABLE<p>NON-DEFERRABLE</p>
</tr>
<tr>
<td rowspan="2">
<p>DEFERRABLE</p>
<p>NON-DEFERRABLE</p>
</td>
</td>
<td rowspan="2">
<td>
<p>DEF</p>
DEF<p>NDEF</p>
<p>NDEF</p>
</td>
</td>
<td rowspan="2">DEFERRABLE</td>
<td>DEFERRABLE</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
AT-MOST-ONE<p>EXACTLY-ONE</p>
<td rowspan="2">
<p>AT-MOST-ONE</p>
<p>EXACTLY-ONE</p>
<p>REPEATABLE</p>
<p>REPEATABLE</p>
</td>
</td>
<td rowspan="2">
<td>
<p>ONE</p>
ONE<p>EXONE</p>
<p>EXONE</p>
<p>REPT</p>
<p>REPT</p>
</td>
</td>
<td rowspan="2">REPT (except in 1NF files), or inside a field group (where it is EXONE)</td>
<td>REPT (except in 1NF files), or inside a field group (where it is EXONE)<p></p><p></p></td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
CODED<p>NON-CODED</p>
</tr>
<tr>
<td rowspan="2">
<p>CODED</p>
<p>NON-CODED</p>
</td>
</td>
<td rowspan="2">
<td>
<p>COD</p>
COD<p>NCOD</p>
<p>NCOD</p>
</td>
</td>
<td rowspan="2">NON-CODED</td>
<td>NON-CODED</td>
</tr>
</tr>
<tr>
<tr>
</tr>
<td>
<tr>
FEW-VALUED<p>MANY-VALUED</p>
<td rowspan="2">
<p>FEW-VALUED</p>
<p>MANY-VALUED</p>
</td>
</td>
<td rowspan="2">
<td>
<p>FV</p>
FV<p>MV</p>
<p>MV</p>
</td>
</td>
<td rowspan="2">MANY-VALUED</td>
<td>MANY-VALUED</td>
</tr>
</tr>
<tr>
</table>
</table>


Line 318: Line 253:


<table>
<table>
<caption>Field constraint attributes with the DEFINE command</caption>
<caption>Field constraint attributes with DEFINE</caption>
<tr class="head">
<tr class="head">
<th>Attribute</th>
<th>Attribute</th>
Line 325: Line 260:
</tr>
</tr>
<tr>
<tr>
<td rowspan="2">
<td>
<p>UNIQUE</p>
UNIQUE<p>NON-UNIQUE</p>
<p>NON-UNIQUE</p>
</td>
</td>
<td rowspan="2">
<td>
<p>UNIQ</p>
UNIQ<p>NUNIQ</p>
<p>NUNIQ</p>
</td>
</td>
<td rowspan="2">NON-UNIQUE</td>
<td>NON-UNIQUE is default</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<p>LEVEL </p>
LEVEL
</td>
</td>
<td>
<td>
<p>LEV</p>
LEV
</td>
</td>
<td>
<td>
<p>See [[Security]]</p>
See [[Security]]
</td>
</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td colspan="3">
<td colspan="3">
<p><center>Field length constraints</center></p>
<p><center><b>Field length constraints</b></center></p>
</td>
</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
Line 366: Line 293:
<td>LENGTH-LE</td><td>LLE</td><td></td>
<td>LENGTH-LE</td><td>LLE</td><td></td>
</tr>
</tr>
<tr>
</tr>
<tr>
<tr>
<td colspan="3">
<td colspan="3">
<p><center>Integer value constraints</center><br>
<center><b>Integer value constraints</b></center>
(validate contents against permissible integer value)</p>
(validate contents against permissible integer value)
</td>
</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
Line 388: Line 310:
<tr>
<tr>
<td>INTEGER-LT</td><td>INTLT</td><td></td>
<td>INTEGER-LT</td><td>INTLT</td><td></td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td colspan="3">
<td colspan="3">
<p><center>Float value constraints</center><br>
<center><b>Float value constraints</b></center>
(validate contents against permissible float value)</p>
(validate contents against permissible float value)
</td>
</td>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
Line 415: Line 333:
<tr>
<tr>
<td colspan="3">
<td colspan="3">
<p><center>Date Time value constraints</center><br>
<center><b>Date Time value constraints</b></center>
(validate contents against permissible date times value)</p>
(validate contents against permissible date times value)
</td>
</td>
</tr>
</tr>
Line 430: Line 348:
<tr>
<tr>
<td>DATETIME-LT</td><td>DTLT</td><td></td>
<td>DATETIME-LT</td><td>DTLT</td><td></td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
</tr>
</table>
</table>


==== Concatenated fields ====
==== Concatenated fields ====
<table>
<table>
<caption>Concatenated field attributes with the DEFINE command</caption>
<caption>Concatenated field attributes with the DEFINE command</caption>
Line 448: Line 358:
<th>Abbreviation</th>
<th>Abbreviation</th>
<th>Notes</th>
<th>Notes</th>
</tr>
<tr>
</tr>
</tr>
<tr>
<tr>
<td>CONCATENATION-OF</td>
<td>CONCATENATION-OF</td>
<td>CAT</td>
<td>CAT</td>
<td>all source fields must be EXACTLY-ONE</td>
<td>All source fields must be EXACTLY-ONE</td>
</tr>
<tr>
</tr>
</tr>
</table>
</table>
Line 462: Line 368:


==== Automatic fields ====
==== Automatic fields ====
<table>
<table>
<caption>Automatic field attributes with the DEFINE command</caption>
<caption>Automatic field attributes with the DEFINE command</caption>
Line 472: Line 377:
<tr>
<tr>
<td>
<td>
<p>COUNT-OCCURRENCES-OF</p>
COUNT-OCCURRENCES-OF
</td>
</td>
<td>
<td>
<p>CTO</p>
CTO
</td>
</td>
<td>
<td>
<p>followed by what it is you're counting;
Followed by what it is you are counting;
<br>
<br>
not allowed for fields defined as REPEATABLE</p>
not allowed for fields defined as REPEATABLE
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td colspan="3">
<td colspan="3">
<p><center>Tracking updates with automatic fields</center></p>
<center><b>Tracking updates with automatic fields</b></center>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>CREATE-TIME</td><td>CRTM</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
<tr>
<tr>
<td>CREATE-TIME</td><td>CRTM</td><td>not allowed for fields defined as REPEATABLE</td>
<td>CREATE-TIMEUTC</td><td>CRTMU</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
<tr>
<tr>
<td>CREATE-TIMEUTC</td><td>CRTMU</td><td>not allowed for fields defined as REPEATABLE</td>
<td>UPDATE-TIME</td><td>UPTM</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
<tr>
<tr>
<td>UPDATE-TIME</td><td>UPTM</td><td>not allowed for fields defined as REPEATABLE</td>
<td>UPDATE-TIMEUTC</td><td>UPTMU</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
<tr>
<tr>
<td>UPDATE-TIMEUTC</td><td>UPTMU</td><td>not allowed for fields defined as REPEATABLE</td>
<td>CREATE-USER</td><td>CRUS</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
<tr>
<td>CREATE-USER</td><td>CRUS</td><td>not allowed for fields defined as REPEATABLE</td>
</tr>
<tr>
<td>UPDATE-USER</td><td>UPUS</td><td>not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
<tr>
<tr>
<td>UPDATE-USER</td><td>UPUS</td><td>Not allowed for fields defined as REPEATABLE</td>
</tr>
</tr>
</table>
</table>


==== Defining a field inside a field group ====
==== Defining a field inside a field group ====
<table>
<table>
<caption>Linking a field to a field group with the DEFINE command</caption>
<caption>Linking a field to a field group with the DEFINE command</caption>
Line 525: Line 424:
<td>FIELDGROUP</td>
<td>FIELDGROUP</td>
<td>FG</td>
<td>FG</td>
<td>If not the last attribute specified, requires an ' AND ' after it</td>
<td>If not the last attribute specified, requires ' AND ' after it</td>
</tr>
<tr>
</tr>
</tr>
</table>
</table>


===OCCURS and LENGTH clauses===
===OCCURS and LENGTH clauses===
<p>The variables n and m specified for OCCURS and LENGTH must be decimal numbers between 1 and 255. The PAD character can be specified in decimal, hexadecimal (X'xx'), or character (C'c') form, and can take on any value equivalent to a number between 0 and 255.</p>
<p>
<p>All preallocated fields (fields that have an OCCURS clause) must be defined before any records are added to the file. </p>
The variables n and m specified for OCCURS and LENGTH must be decimal numbers between 1 and 255. The PAD character can be specified in decimal, hexadecimal (X'xx'), or character (C'c') form, and can take on any value equivalent to a number between 0 and 255.</p>
<p>
All preallocated fields (fields that have an OCCURS clause) must be defined before any records are added to the file. </p>
<p class="note"><b>Note:</b> After records are loaded, you can add a preallocated field definition only by reinitializing the file, defining all the fields-including the new preallocated field-and reloading the records. Non-preallocated field definitions can be added at any time. </p>
<p class="note"><b>Note:</b> After records are loaded, you can add a preallocated field definition only by reinitializing the file, defining all the fields-including the new preallocated field-and reloading the records. Non-preallocated field definitions can be added at any time. </p>
===Defining field retrieval attributes===
===Defining field retrieval attributes===
<p>If you do not know if a field will be used in retrievals, you can define it initially as NON-KEY, NON-ORDERED, and NON-RANGE. Then, you will be able to monitor the use of the field in FIND statements using information written to the journal data set and redefine it as KEY, NUMERIC RANGE, or ORDERED when necessary.</p>
<p>
<p>For details, see [[ File Statistics and Tuning#Monitoring field retrievals in FIND statements|Monitoring field retrievals in FIND statements]].</p>
If you do not know if a field will be used in retrievals, you can define it initially as NON-KEY, NON-ORDERED, and NON-RANGE. Then, you will be able to monitor the use of the field in FIND statements using information written to the journal data set and redefine it as KEY, NUMERIC RANGE, or ORDERED when necessary.</p>
<p>
For details, see [[File Statistics and Tuning#Monitoring field retrievals in FIND statements|Monitoring field retrievals in FIND statements]].</p>


==Implementing the date-time stamp feature (DTS)==
==Implementing the date-time stamp feature (DTS)==

Revision as of 20:50, 9 October 2013

This chapter describes the use of DEFINE FIELD command, which allows you to define the fields in a file. For the full syntax, follow that link.

Defining fields

After you create and initialize a Model 204 file, use the DEFINE command or the IFDFLD Host Language Interface function to establish the names and types of the fields in the file.

The format of the DEFINE command is:

Syntax

DEFINE FIELD name [(attribute [,[attribute ...]]) | WITH [attribute][,[attribute ...]]]

where:

name is a 1 to 255 character name that must begin with a letter and can contain any alphanumeric characters, including spaces, except:

?? ?$ ?& @ (or an alternative delete character) # (or an alternative flush character)

attribute is a member of the list in Field attributes.

If you specify the ORDERED attribute, you can follow it with a list of qualifying parameters that designate the type of ordering and the space utilization characteristics of the Ordered Index. See the discussion of the ORDERED attribute in ORDERED and NON-ORDERED attributes.

Example

In the following example the field CUSTID is named and given the ORDERED CHARACTER attribute:

DEFINE FIELD CUSTID ORDERED CHARACTER

Specify as many field attributes as needed from Field attributes. For each attribute pair shown in the list, only one of the alternatives can be specified; conflicting attributes, such as KEY and NON-KEY, cannot be used together in a single description.

Note: Every attribute has a default value. Therefore, you only need to specify the attribute if it is not the default.

When to use the FIELD keyword

The keyword FIELD is required before field names that begin with the word FIELD, PRINTER, or DATASET. It is optional with other field names. If FIELD is specified, only one field can be defined or redefined per command. For example:

DEFINE FIELD POLICYHOLDER DEFINE POLICYHOLDER

Each example above defines a field with the name POLICYHOLDER. The following example defines a field with the name FIELD LOCATION:

DEFINE FIELD FIELD LOCATION

Defining sort key, hash key, and record security fields

The DEFINE command cannot be used to define sort key fields, hash key fields, or record security fields. These fields can be defined only with the INITIALIZE command and the appropriate parameter settings.

Field attributes

The attributes listed in the following tables are introduced in Field Design, along with a summary of the rules follow in assigning them. A number of the attributes have additional optional attributes (in particular, see the ORDERED attribute) that can be specified with the DEFINE FIELD command, which are also described in Field Design.

Indexing attributes

The overall effect of the defaults is that, unless specified, the field is not indexed.

Indexing field attributes with the DEFINE command
AttributeAbbreviationDefault
ORDERED CHARACTER

NON-ORDERED

ORD CHAR

NORD

NON-ORDERED
ORDERED NUMERIC

NON-ORDERED

ORD NUM

NORD

NON-ORDERED
KEY

NON-KEY

 

NKEY

NON-KEY
FRV

NON-FRV

The ORD attribute is preferable; shown for compatibility.

 

NFRV

NON-FRV
[NUMERIC] RANGE

NON-RANGE

Obsolete; supported for compatibility.

NR

NNR

NON-RANGE

Data types

In most cases, only one of these may be specified on any field (see the UTF attributes). The default is STRING

Data type attributes with the DEFINE command
Attribute Abbreviation Notes
STRING STR
BINARY BIN
BINARY-LARGE-OBJECT

CHARACTER-LARGE-OBJECT

BLOB

CLOB

Must have Table E enabled

FLOAT FLT Must have LEN specified
DATETIME DT
UTF-8

UTF-16

UTF8

UTF16

Must be used in conjunction with the BLOB or CLOB attribute

VISIBLE

INVISIBLE

VIS

INV

Data content attributes

Data content field attributes with the DEFINE command
Attribute Abbreviation Default
UPDATE IN PLACE

UPDATE AT END

UP

UE

UPDATE IN PLACE

LENGTH m

LEN m

No preallocated length

OCCURS n OCC n No preallocated occurrences

PAD character

 

character = X'00'

DEFERRABLE

NON-DEFERRABLE

DEF

NDEF

DEFERRABLE
AT-MOST-ONE

EXACTLY-ONE

REPEATABLE

ONE

EXONE

REPT

REPT (except in 1NF files), or inside a field group (where it is EXONE)

CODED

NON-CODED

COD

NCOD

NON-CODED
FEW-VALUED

MANY-VALUED

FV

MV

MANY-VALUED

Field constraints

More than one constraint may be set on a field. For example, if you only want to accept integer values between 5 and 99, then you can code:

DEFINE FIELD fieldname WITH INTGE 5 INTLE 99

Field constraint attributes with DEFINE
Attribute Abbreviation Notes
UNIQUE

NON-UNIQUE

UNIQ

NUNIQ

NON-UNIQUE is default

LEVEL

LEV

See Security

Field length constraints

LENGTH-EQLEQ
LENGTH-GELGE
LENGTH-LELLE
Integer value constraints

(validate contents against permissible integer value)

INTEGER-GEINTGE
INTEGER-GTINTGT
INTEGER-LEINTLE
INTEGER-LTINTLT
Float value constraints

(validate contents against permissible float value)

FLOAT-GEFLTGE
FLOAT-GTFLTGT
FLOAT-LEFLTLE
FLOAT-LTFLTLT
Date Time value constraints

(validate contents against permissible date times value)

DATETIME-GEDTGE
DATETIME-GTDTGT
DATETIME-LEDTLE
DATETIME-LTDTLT

Concatenated fields

Concatenated field attributes with the DEFINE command
Attribute Abbreviation Notes
CONCATENATION-OF CAT All source fields must be EXACTLY-ONE


Automatic fields

Automatic field attributes with the DEFINE command
Attribute Abbreviation Notes

COUNT-OCCURRENCES-OF

CTO

Followed by what it is you are counting;
not allowed for fields defined as REPEATABLE

Tracking updates with automatic fields
CREATE-TIMECRTMNot allowed for fields defined as REPEATABLE
CREATE-TIMEUTCCRTMUNot allowed for fields defined as REPEATABLE
UPDATE-TIMEUPTMNot allowed for fields defined as REPEATABLE
UPDATE-TIMEUTCUPTMUNot allowed for fields defined as REPEATABLE
CREATE-USERCRUSNot allowed for fields defined as REPEATABLE
UPDATE-USERUPUSNot allowed for fields defined as REPEATABLE

Defining a field inside a field group

Linking a field to a field group with the DEFINE command
Attribute Abbreviation Notes
FIELDGROUP FG If not the last attribute specified, requires ' AND ' after it

OCCURS and LENGTH clauses

The variables n and m specified for OCCURS and LENGTH must be decimal numbers between 1 and 255. The PAD character can be specified in decimal, hexadecimal (X'xx'), or character (C'c') form, and can take on any value equivalent to a number between 0 and 255.

All preallocated fields (fields that have an OCCURS clause) must be defined before any records are added to the file.

Note: After records are loaded, you can add a preallocated field definition only by reinitializing the file, defining all the fields-including the new preallocated field-and reloading the records. Non-preallocated field definitions can be added at any time.

Defining field retrieval attributes

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

For details, see Monitoring field retrievals in FIND statements.

Implementing the date-time stamp feature (DTS)

The date-time stamp feature in Model 204 lets you can easily discern when a record in a file was last changed. The date-time stamp feature is supported for ONLINE and BATCH204.

See Setting Up the Date-Time Stamp Field for the steps the System Manger must take before this feature is used,
and Adding a Date-Time Stamp field for rules on using the feature.

Preventing definition of new field names

Model 204 permits a user to define new fields at any time. This is an advantage in some applications, because it enables the file to evolve beyond its original definition. If your site does not want users to add new field names, reset the FOPT parameter to X'01' from its default value of X'00'. This file option causes Model 204 to issue the following response, when a user issues a DEFINE command:

*** M204.1261: NEW FIELD NAMES NOT PERMITTED

Regardless of the setting of the FOPT parameter, users with file manager privileges (see the PRIVDEF parameter) can define new fields at any time. See the discussion in FOPT parameter for more detail.