ZCH_SCORING_MODEL_DETAILS
zch_scoring_model_details table stores the conditions and the score weight for the scoring model.
Details
-
Schema: FUSION
-
Object owner: ZCH
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
| Name | Columns |
|---|---|
|
ZCH_SCORING_MODEL_DETAILS_PK |
MODEL_DETAIL_UUID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| MODEL_DETAIL_UUID | VARCHAR2 | 36 | 36 | Yes | Sequence generated id to uniquely identify a record |
| MODEL_UUID | VARCHAR2 | 36 | 36 | Yes | Foreign Key to ZCH_SCORING_MODELS |
| GROUP_UUID | VARCHAR2 | 36 | 36 | Yes | key to group the list of records in this table into one score |
| OBJECT_CODE | VARCHAR2 | 50 | Yes | Name of the object that this scoring detail expression is based on | |
| ATTRIBUTE_NAME | VARCHAR2 | 120 | Yes | Name of the attribute that this scoring detail expression is using | |
| OPERATOR | VARCHAR2 | 30 | Yes | Operator name used in this scoring detail | |
| VALUE | VARCHAR2 | 100 | First value used by the operator | ||
| VALUE2 | VARCHAR2 | 100 | Second value used by the operator | ||
| SCORE_WEIGHT | NUMBER | 9 | Yes | Score weight for this detail | |
| SCORE_EXPR | CLOB | Score expression that is build by the object name, attribute name, operator and/or values | |||
| DESCRIPTION | VARCHAR2 | 2000 | Description of the model detail | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated 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. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| ZCH_SCORING_MODEL_DETAILS | zch_scoring_models | MODEL_UUID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| ZCH_SCORING_MODEL_DETAILS_N1 | Non Unique | Default | MODEL_UUID |
| ZCH_SCORING_MODEL_DETAILS_PK | Unique | Default | MODEL_DETAIL_UUID |