This table stores the locale-specific information
for the access control relationships which are stored in the
ACRELATION table.
Column Descriptions:
Name | Type | Description |
ACRELATION_ID | INTEGER NOT NULL | The relation ID. It is a foreign key to the
ACRELATION table. Together with the LANGUAGE_ID column, it forms a
primary key. |
DISPLAYNAME | VARCHAR (254) NOT NULL | A locale-specific display name of the
relationship. Together with the LANGUAGE_ID column, it forms a
unique key. |
DESCRIPTION | VARCHAR (254) | The description of the relationship. |
LANGUAGE_ID | INTEGER NOT NULL | The language ID. It is a foreign key to the
LANGUAGE table. Together with the ACRELATION _ID column, it forms a
primary key. For a list of language components, see the LANGUAGE
table. |
OPTCOUNTER | SMALLINT | 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> | ACRELATION_ID+LANGUAGE_ID | Primary Key |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_35 | LANGUAGE_ID | LANGUAGE | LANGUAGE_ID | Cascade |
F_36 | ACRELATION_ID | ACRELATION | ACRELATION_ID | Cascade |