This table captures the relationship between access
control resources and actions. Given a resource, you can find out
the associated actions from this table.
Column Descriptions:
Name | Type | Description |
ACRESCGRY_ID | INTEGER NOT NULL | The resource category ID. This is a primary key,
as well as a foreign key to the ACRESCGRY table |
ACACTION_ID | INTEGER NOT NULL | The action ID. It is a primary key, and a
foreign key to the ACACTION table. |
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> | ACRESCGRY_ID+ACACTION_ID | Primary Key |
I0000443 | ACACTION_ID | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_38 | ACACTION_ID | ACACTION | ACACTION_ID | Cascade |
F_39 | ACRESCGRY_ID | ACRESCGRY | ACRESCGRY_ID | Cascade |