Stores the relationship between the TAGCLASS and
TAGDISPLAY tables.
Column Descriptions:
| Name | Type | Description |
| TAGNAME | VARCHAR (40) NOT NULL | The name of the tag, reference key to the
TAGCLASS table. |
| DISPLAYNAME | VARCHAR (40) NOT NULL | The display type defined for the related tag,
reference key to the table TAGDISPLAY. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | TAGNAME+DISPLAYNAME | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_1212 | TAGNAME | TAGCLASS | TAGNAME | Cascade |
| F_1213 | DISPLAYNAME | TAGDISPLAY | DISPLAYNAME | Cascade |