OKC_KEY_TERMS

Defines all the key terms that will be extracted by LLM.

Details

  • Schema: FUSION

  • Object owner: OKC

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

OKC_KEY_TERMS_PK

KEY_TERM_CODE

Columns

Name Datatype Length Precision Not-null Comments
KEY_TERM_CODE VARCHAR2 80 Yes Unique identifier of the key term.
KEY_TERM_NAME VARCHAR2 300 Yes Unique name to identify a key term.
KEY_TERM_GROUP VARCHAR2 30 Group to which the key the term belongs to.
KEY_TERM_OUTPUT_TYPE VARCHAR2 30 Yes Data type of the key term. Value could be Text, Number or Date.
ACTIVE_FLAG VARCHAR2 1 Yes Indicates that the status of the key term is active or not.
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
okc_k_key_terms okc_key_terms KEY_TERMS_CODE
okc_key_term_prompts okc_key_terms KEY_TERM_CODE

Indexes

Index Uniqueness Tablespace Columns
OKC_KEY_TERMS_PK Unique Default KEY_TERM_CODE
OKC_KEY_TERMS_U1 Unique Default KEY_TERM_NAME