FAI_INSIGHTS
This table stores data for insight configurations.
Details
-
Schema: FUSION
-
Object owner: FAI
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FAI_INSIGHTS_PK |
INSIGHT_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| INSIGHT_ID | NUMBER | 18 | Yes | Autogenerated number and primary key for this table. | |
| INSIGHT_NAME | VARCHAR2 | 256 | Yes | Name of the insight configuration. | |
| INSIGHT_CODE | VARCHAR2 | 256 | Yes | Code of the insight configuration. | |
| DESCRIPTION | VARCHAR2 | 4000 | Description of the insight configuration. | ||
| RUN_MODE | VARCHAR2 | 100 | Yes | Run mode indicating how to process the dataset for this insight evaluation. It can be SEQUENCE or RANDOM. | |
| INSIGHT_TYPE | VARCHAR2 | 800 | Yes | The group of metrics to compute such as RAG, Resolution, and Feedback. | |
| INSIGHT_OBJECT_TYPE | VARCHAR2 | 100 | The type of the object being evaluated for this insight. | ||
| INSIGHT_OBJECT_CODE | VARCHAR2 | 800 | Yes | The code of the object being evaluated for this insight. | |
| INSIGHT_SPEC | CLOB | Insight evaluation question and answers or set of prompt parameters in JSON format. | |||
| XTR_DATA | CLOB | Any JSON data required for quick feature delivery. Used in lieu of datamodel changes in release n+1 so that datamodel changes can be implemented for performance or technical fixes in release n+2. Leave off BOSS objects until required for this purpose. Remove from BOSS objects once this datamodel is modified. | |||
| XTR_RAW | CLOB | Any data needed that is not in any format known at runtime. Can be used for error recovery and keeping data out of the logs. | |||
| 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. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| FAI_INSIGHTS_N1 | Non Unique | Default | CREATION_DATE |
| FAI_INSIGHTS_U1 | Unique | Default | INSIGHT_ID |
| FAI_INSIGHTS_U2 | Unique | Default | INSIGHT_NAME |
| FAI_INSIGHTS_U3 | Unique | Default | INSIGHT_CODE |