Field Index

Indicates whether an index is to be maintained on the field.

Valid Values

As shown in the table below:

CodeMeaning
No(DEFAULT) The field is not to be indexed
YesThe field is to be indexed
UniqueThe field is to be indexed, and each value found in the field must be unique

Remarks

Index is ignored for fields that belong to documents.

Field RemoteName

The name of the database table on the database server, if different than the EntitySet name. RemoteName is normally used when there is a naming incompatibility between Zim and the database server.

Remarks

The name of the database table on the database server

Field RelPerUser

Whether this relationship is defined to be per user.

Valid Values

“yes” or “no” (the default value is “no”).

Remarks

The RelPerUser field only applies to Relationships with fields because there is no physical file to be handled.

Normally, Relationships with fields belong to the database and are managed by ZimServer. However, per user Relationships have these differences:

. They are handled by the current session and their information is lost after the session finishes;

. They are located in the $WorkPath directory;

. They don’t suffer any locks because they belong to the current user and no other users can access them;

. They don’t exist at the beginning of the session and must explicitly be created (or recreated) at any time by the application via the command INITIALIZE PERUSER. There is no need to keep a “storage” full of empty copies of all per user Relationships used by the Zim  application.

In previous versions of Zim, per user Relationships were indicated with the “)” mark in the AREAS.ZIM file. This is no longer needed and any such entries will flagged with an error.

Field EntPerUser

Whether this entity set is defined to be per user.

Valid Values

“yes” or “no” (the default value is “no”).

Remarks

Normally, entity sets belong to the database and are managed by ZimServer. However, per user entity sets have these differences:

. They are handled by the current session and their information is lost after the session finishes;

. They are located in the $WorkPath directory;

. They don’t suffer any locks because they belong to the current user and no other users can access them;

. They don’t exist at the beginning of the session and must explicitly be created (or recreated) at any time by the application via the command INITIALIZE PERUSER. There is no need to keep a “storage” full of empty copies of all per user entity sets used by the Zim  application.

In previous versions of Zim, per user entity sets were indicated with the “)” mark in the AREAS.ZIM file. This is no longer needed and any such entries will flagged with an error.

Field Virtual

Indicates whether the field is a virtual field.

Valid Values

As shown in the table below:

Code

Meaning

No

(DEFAULT) The field is a normal field

Yes

The field is a virtual field

 

Remarks

A virtual field’s value is not stored in the database, but is computed dynamically, based on the expression entered into the field’s Default attribute.

 

A virtual field cannot be of type varchar or varalpha

See Also

Default

Field Reqd

“Non-null required” status of a field. Indicates whether a value other than $Null is always required for the field in an ADD or CHANGE command.

Valid Values

As shown in the table below:

Code

Meaning

No

(DEFAULT) The field need not be assigned a non-null value

Yes

The field must always be assigned a non-null value, either explicitly or by the field’s default attribute (see Default)

 

Remarks

During an ADD command, if no value is required and none is assigned, the field’s value is set to its specified default value, which may be $Null.

Reqd is not used for fields that belong to documents.

See Also

Default

Field DirName

The name of an application directory (Directories); otherwise, the one application directory in which the associated object may exist.

Valid Values

An 18-character string, containing a valid object name

Remarks

In Directories:

DirName is the name assigned to the directory.

In other Object Dictionary entity sets:

In any entity set, the principal object’s DirName must match the DirName of its owner.

If DirName is left blank, the object may exist in any number of application directories.

In DDDescriptions, DirName is where the object being described may be found.

In DisplayForms, DirName is where the owner-display of the associated form may be found.

See Also

ConstName, DDObjectName, DDOwnerName, DisplayName, DocName, EntName, FieldName, FormName, MenuName, OwnerName, RelName, RoleName, SetName, UserName, VarName

Field BWSel

Index selectivity factors. Index selectivity factors used by Zim’s strategy optimizer.

Valid Values

A number from 0 to 1.000 (DEFAULT = 1.000)

Remarks

The index selectivity factors are relevant for indexed fields only.

Each number represents the fraction of records that you would typically expect to retrieve using an indexed lookup with a particular operator or operators.

BWSel

selectivity factor for BETWEEN

EQSel

selectivity factor for the equals (=) operator

LGSel

selectivity factor for all other operators (i.e., less than (<), greater than (>), less than or equals (<=), greater than or equals (>=))

Values closer to 0 imply a very selective index, while values closer to 1 imply an index with poor selectivity. A value of 1.000 instructs Zim to use its internal selectivity factors.

pt_BRPortuguese