In the Column List:
- P = Primary key
- M = Mandatory field
- F = Foreign key (where the term is used loosely to indicate a surrogate key reference to a field in another table, not a formal constraint)
- DV = Default value
- In the Data Type column, varchar/nvarchar means that the data type is varchar except in multi-language databases that use Unicode, in which case the data type is nvarchar. (The Info Mart database in Cloud deployments is not multi-language.) THIS BULLET DISPLAYS ONLY IN THE MSSQL AND CLOUD PDMs.
Line 138: | Line 138: | ||
{{PDMIndexItem | {{PDMIndexItem | ||
|indexName = I_USER_DATA_CUST_DIM_1 | |indexName = I_USER_DATA_CUST_DIM_1 | ||
− | |indexDesc = | + | |indexDesc = Ensures that the combinations of values that are stored in the dimension table are unique. |
|indexPresentInPartitioned = yes | |indexPresentInPartitioned = yes | ||
|indexKey1 = TENANT_KEY | |indexKey1 = TENANT_KEY |
Revision as of 14:34, June 13, 2016
Table USER_DATA_CUST_DIM_1
Description
Hint: For easiest viewing, open the downloaded CSV file in Excel and adjust settings for column widths, text wrapping, and so on as desired. Depending on your browser and other system settings, you might need to save the file to your desktop first.
Column List
Column | Data Type | P | M | F | DV |
---|---|---|---|---|---|
ID | Oracle: NUMBER(10) MSSQL: int PostgreSQL: integer |
X | X | ||
TENANT_KEY | Oracle: NUMBER(10) MSSQL: int PostgreSQL: integer |
X | X | ||
DIM_ATTRIBUTE_1 Through DIM_ATTRIBUTE_5 | Oracle: VARCHAR2(255 CHAR) MSSQL: nvarchar(170) PostgreSQL: varchar(255) |
X | none | ||
CREATE_AUDIT_KEY | Oracle: NUMBER(19) MSSQL: numeric(19) PostgreSQL: numeric(19) |
X | X |
ID
The primary key of this table and the surrogate key that is used to join this dimension table to the fact tables.
TENANT_KEY
The surrogate key that is used to join the TENANT dimension to the fact tables, to indicate the tenant of the IRF resource. The value of this field is identical to the value that is in the corresponding INTERACTION_RESOURCE_FACT record. This value can be used to restrict data access.
DIM_ATTRIBUTE_1 Through DIM_ATTRIBUTE_5
Modified: 8.5.010 (in Microsoft SQL Server, data type modified in single- and multi-language databases)
Stores the value of a certain user-data key. The name of this column, which is configurable and typically matches the user-data key name, may differ in your deployment. If a default value is configured, it is stored when a KVP is missing for an interaction. Attribute values must be of low cardinality, to prevent this dimension from becoming as large as the fact tables.
This field supports character values only.
CREATE_AUDIT_KEY
The surrogate key that is used to join to the CTL_AUDIT_LOG control table. The key specifies the lineage for data creation. This value can be useful for aggregation, enterprise application integration (EAI), and ETL tools—that is, applications that need to identify newly added data.
Index List
CODE | U | C | Description |
---|---|---|---|
I_USER_DATA_CUST_DIM_1 | X | Ensures that the combinations of values that are stored in the dimension table are unique. |
Index I_USER_DATA_CUST_DIM_1
Field | Sort | Comment |
---|---|---|
TENANT_KEY | Ascending | |
DIM_ATTRIBUTE_1 | Ascending | |
DIM_ATTRIBUTE_2 | Ascending | |
DIM_ATTRIBUTE_3 | Ascending | |
DIM_ATTRIBUTE_4 | Ascending | |
DIM_ATTRIBUTE_5 | Ascending |
Subject Areas
- Interaction_Resource — Represents a summary of each attempt to handle an interaction. It encompasses the mediation process that is required to offer the interaction to a target handling resource, as well as the activities of that target handling resource.
References
The summary List of References will include the following entries for this table or view:
Child Table/View | Child Table/View Column | Parent Table/View | Parent Table/View Column |
---|---|---|---|
USER_DATA_CUST_DIM_1 | CREATE_AUDIT_KEY | CTL_AUDIT_LOG | AUDIT_KEY |
USER_DATA_CUST_DIM_1 | TENANT_KEY | TENANT | TENANT_KEY |