FAI_EVALUATIONS
This table stores data for evaluation configurations.
Details
-
Schema: FUSION
-
Object owner: FAI
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FAI_EVALUATIONS_PK |
EVAL_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| EVAL_ID | NUMBER | 18 | Yes | Autogenerated number and primary key for this table. | |
| EVAL_NAME | VARCHAR2 | 256 | Yes | Name of the evaluation configuration. | |
| EVAL_CODE | VARCHAR2 | 256 | Yes | Code of the evaluation configuration. | |
| DESCRIPTION | VARCHAR2 | 4000 | Description of the evaluation configuration. | ||
| RUN_MODE | VARCHAR2 | 100 | Yes | Run mode indicating how to process the dataset for the evaluation. It can be SEQUENCE or RANDOM. | |
| EVAL_OBJECT_TYPE | VARCHAR2 | 100 | The type of the object being evaluated. | ||
| EVAL_OBJECT_CODE | VARCHAR2 | 800 | Yes | The code of the object being evaluated. | |
| EVAL_SPEC | CLOB | Evaluation question and answers or set of prompt parameters in JSON format. | |||
| 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_EVALUATIONS_N1 | Non Unique | Default | CREATION_DATE |
| FAI_EVALUATIONS_N2 | Non Unique | Default | EVAL_NAME |
| FAI_EVALUATIONS_U1 | Unique | Default | EVAL_ID |
| FAI_EVALUATIONS_U2 | Unique | Default | EVAL_CODE |