This table is used to save order snapshots in XML
format.
Column Descriptions:
| Name | Type | Description |
| ORDERS_ID | BIGINT NOT NULL | The Order ID. |
| ORDERVERSION | SMALLINT NOT NULL | The Order history version. |
| LASTUPDATE | TIMESTAMP | The time this history is created. |
| ORDXML | CLOB (10000000) | The XML snapshot for the order information. |
| FIELD1 | INTEGER | Customizable field |
| FIELD2 | VARCHAR (254) | Customizable field |
| FIELD3 | TIMESTAMP | Customizable field |
| 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+ORDERVERSION | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| R_3458 | ORDERS_ID | ORDERS | ORDERS_ID | Cascade |