CSO_ARTICLE_LINKS

This table is used to store the article links of knowledge articles.

Details

  • Schema: FUSION

  • Object owner: CSO

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

CSO_ARTICLE_LINKS_PK

LINK_ID

Columns

Name Datatype Length Precision Not-null Comments
LINK_ID NUMBER 18 Yes This is the primary key of the table.
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.
SOURCE_CONTENT_TEXT_ID VARCHAR2 32 Yes Foreign key that references cso_content_text (RECORD_ID), contains version Id of the linked-from article.
SOURCE_DOCUMENT_ID VARCHAR2 50 Yes Document ID of the linked-from article.
SOURCE_LOCALE_ID VARCHAR2 32 Yes Locale ID of the linked-from article.
SOURCE_ANSWER_ID NUMBER Yes Answer ID of the linked-from article.
TARGET_DOCUMENT_ID VARCHAR2 50 Document ID of the linked-to article.
TARGET_LOCALE_ID VARCHAR2 32 Locale ID of the linked-to article.
TARGET_ANCHOR_ID VARCHAR2 64 Anchor ID of the linked-to article.
TARGET_ANSWER_ID NUMBER Answer ID of the linked-to article.

Foreign Keys

Table Foreign Table Foreign Key Column
CSO_ARTICLE_LINKS cso_content_text SOURCE_CONTENT_TEXT_ID

Indexes

Index Uniqueness Tablespace Columns
CSO_ARTICLE_LINKS_N1 Non Unique Default SOURCE_CONTENT_TEXT_ID
CSO_ARTICLE_LINKS_N2 Non Unique Default SOURCE_DOCUMENT_ID, SOURCE_LOCALE_ID
CSO_ARTICLE_LINKS_N3 Non Unique Default SOURCE_ANSWER_ID
CSO_ARTICLE_LINKS_N4 Non Unique Default TARGET_DOCUMENT_ID, TARGET_LOCALE_ID
CSO_ARTICLE_LINKS_N5 Non Unique Default TARGET_ANSWER_ID
CSO_ARTICLE_LINKS_PK Unique Default LINK_ID