CSO_CRAWL_CONFIG

This table stores the configuration to crawl a external web url.

Details

  • Schema: FUSION

  • Object owner: CSO

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

CSO_CRAWL_CONFIG_PK

CRAWL_CONFIG_ID

Columns

Name Datatype Length Precision Not-null Comments
CRAWL_CONFIG_ID NUMBER Yes This is the primary key of the table.
CRAWL_CONFIG_TEMPLATE_ID NUMBER Yes This column specifies crawl config template id.
CRAWL_CONFIG_NAME VARCHAR2 100 Yes Authoring external content type name will be based on this name.
CRAWL_CONFIG_ENABLED VARCHAR2 1 Yes This column specifies if the crawl config is enabled or not.
CRAWL_CONFIG_CRON_SPEC VARCHAR2 200 Yes This column specifies cron frequency for processing this crawl config.
CRAWL_CONFIG_CHANNEL_ID VARCHAR2 200 Yes Foreign key for content channel.
CRAWL_CONFIG_PRIORITY NUMBER Yes Indicates priority of job processing this config in case of multiple job runs.
CRAWL_CONFIG_METADATA CLOB Yes This field specifies the crawl config template.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created 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.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.

Foreign Keys

Table Foreign Table Foreign Key Column
cso_crawl_ext_url_relation cso_crawl_config CSO_CRAWL_EXT_URL_RELATION_ID
cso_crawl_ext_url_data cso_crawl_config CRAWL_CONFIG_ID

Indexes

Index Uniqueness Tablespace Columns
CSO_CRAWL_CONFIG_PK Unique Default CRAWL_CONFIG_ID
CSO_CRAWL_CONFIG_U1 Unique Default CRAWL_CONFIG_NAME