Reserved for HCL internal use. This stores the
component configuration for a particular commerce instance
Column Descriptions:
| Name | Type | Description |
| SRCH_COMPCONFIG_ID | BIGINT NOT NULL | Primary key |
| TENANT_ID | BIGINT NOT NULL DEFAULT 0 | The ID of the tenant in the multi-tenant
environment |
| COMP_ID | VARCHAR (128) NOT NULL | The component ID of the configuration |
| NAME | VARCHAR (128) NOT NULL | The name of the configuration |
| CONTENT | CLOB (1048576) | The configuration detail in XML format |
| LASTUPDATE | TIMESTAMP | The last update time stamp |
| 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 |
| P_0043 | SRCH_COMPCONFIG_ID | Primary Key |
| I0001539 | TENANT_ID+COMP_ID+NAME | Unique Index |