This table stores all the access control policies
in the system. Every policy refers to an action group, a member
group, a resource group and optionally, a relationship.
Column Descriptions:
| Name | Type | Description |
| ACACTGRP_ID | INTEGER NOT NULL | The action group ID. It is a foreign key to the
ACACTGRP table. Together with the LANGUAGE_ID column, it forms a
unique key. |
| DISPLAYNAME | VARCHAR (700) NOT NULL | The locale specific display name for this
resource group. |
| DESCRIPTION | VARCHAR (700) | The locale specific description for this action
group. |
| LANGUAGE_ID | INTEGER NOT NULL | Foreign key to the LANGUAGE table. Together with
the ACACTGRP_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> | ACACTGRP_ID+LANGUAGE_ID | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_1 | LANGUAGE_ID | LANGUAGE | LANGUAGE_ID | Cascade |
| F_2 | ACACTGRP_ID | ACACTGRP | ACACTGRP_ID | Cascade |