This table is used to track the customer segments
to which an Order is associated.
Column Descriptions:
Name | Type | Description |
ORDERS_ID | BIGINT NOT NULL | Foreign key to the ORDERS table. |
MBRGRP_ID | BIGINT NOT NULL | Foreign key to the MBRGRP 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> | ORDERS_ID+MBRGRP_ID | Primary Key |
I0000650 | MBRGRP_ID | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_510 | MBRGRP_ID | MBRGRP | MBRGRP_ID | Cascade |
F_511 | ORDERS_ID | ORDERS | ORDERS_ID | Cascade |