SVC_OMNI_TENANT_CONFIGS
Table represents the tenant configuration settings.
Details
-
Schema: FUSION
-
Object owner: SVC
-
Object type: TABLE
-
Tablespace: svc_omni_tenant_configs
Primary Key
| Name | Columns |
|---|---|
|
SVC_OMNI_TENANT_CONFIGS_PK |
TENANT_CONFIG_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| TENANT_CONFIG_ID | NUMBER | 18 | Yes | Generated sequence for the primary key. | |
| NAME | VARCHAR2 | 32 | Yes | Name of the specific configuration entry. | |
| SCOPE | VARCHAR2 | 32 | Yes | Scope at which configuration is applicable. GLOBAL, QUEUE. | |
| SCOPE_OBJECT_ID | NUMBER | 18 | Identifier of the target entity within the specified SCOPE. Used only when the configuration applies to a specific scoped object (for example, when SCOPE = 'QUEUE', this stores the queue identifier). Null when SCOPE = 'GLOBAL'. | ||
| VALUE | VARCHAR2 | 255 | Stores the value associated with NAME for the given SCOPE/SCOPE_OBJECT_ID. Intended for basic settings; for complex/structured settings use the CONFIGURATION CLOB instead. | ||
| CONFIGURATION | CLOB | Optional configuration clob to specify complex configuration. | |||
| TENANT_CONFIG_NUMBER | VARCHAR2 | 30 | Yes | Public unique identifier to identify unique record. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| SVC_OMNI_TENANT_CONFIGS_PK | Unique | SVC_OMNI_TENANT_CONFIGS_PK | TENANT_CONFIG_ID |
| SVC_OMNI_TENANT_CONFIGS_U1 | Unique | SVC_OMNI_TENANT_CONFIGS_U1 | TENANT_CONFIG_NUMBER |
| SVC_OMNI_TENANT_CONFIGS_U2 | Unique | SVC_OMNI_TENANT_CONFIGS_U2 | NAME, SCOPE, SCOPE_OBJECT_ID |