CSO_NORMALIZED_QUESTIONS
Dimension table to hold normalized questions.
Details
-
Schema: FUSION
-
Object owner: CSO
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
CSO_NORMALIZED_QUESTIONS_PK |
NORMALIZED_QUESTION_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| NORMALIZED_QUESTION_ID | NUMBER | 18 | Yes | Primary key of the table. Populated by sequence number. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated 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. | |
| NORMALIZED_QUESTION | VARCHAR2 | 256 | Yes | The question text after it has been normalized. | |
| LOCALE_ID | VARCHAR2 | 32 | Yes | This is the reference to the locale in CSO_LOCALE table. | |
| RECOGNIZED_TOKENS | VARCHAR2 | 256 | List of known words or concepts to the search application. | ||
| UNRECOGNIZED_TOKENS | VARCHAR2 | 256 | List of unknown words to the search application. | ||
| RECOGNIZED_TOKENS_CSV | VARCHAR2 | 256 | List of known words or concepts to the search application. This list is used by PLSQL code to generate tokens. | ||
| UNRECOGNIZED_TOKENS_CSV | VARCHAR2 | 256 | List of unknown words to the search application. This list is used by PLSQL code to generate tokens. | ||
| DEPARTMENT_ID | VARCHAR2 | 32 | The unique ID for the department as stored by knowledge and will be used for striping questions. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| CSO_NORMALIZED_QUESTIONS | cso_site | DEPARTMENT_ID |
| cso_search_question_tokens | cso_normalized_questions | NORMALIZED_QUESTION_ID |
| cso_rpt_questions | cso_normalized_questions | NORMALIZED_QUESTION_ID |
| cso_search_stats | cso_normalized_questions | NORMALIZED_QUESTION_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| CSO_NORMALIZED_QUESTIONS_N1 | Non Unique | Default | CREATION_DATE |
| CSO_NORMALIZED_QUESTIONS_PK | Unique | Default | NORMALIZED_QUESTION_ID |
| CSO_NORMALIZED_QUESTIONS_U1 | Unique | Default | DEPARTMENT_ID, NORMALIZED_QUESTION, LOCALE_ID |