CSO_PIPELINE_ITEM_LOGS

This table contains Pipeline processing log entries, to give an overview of what each Pipeline has been doing.

Details

  • Schema: FUSION

  • Object owner: CSO

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

CSO_PIPELINE_ITEM_LOGS_PK

RECORD_ID

Columns

Name Datatype Length Precision Not-null Comments
RECORD_ID VARCHAR2 32 Yes Unique Primary Key for this table.
PIPELINE_ID VARCHAR2 32 Yes ID of the Pipeline; used to store items and logs for this specific pipeline.
ITEM_ID VARCHAR2 300 Yes ID of the item in the pipeline, to be used by implementation code to identify this item in another system.
ITEM_TYPE VARCHAR2 300 Yes The type of the item being stored, used by implementation code to determine which type of item is being handled.
ACTION VARCHAR2 100 Yes The name of the action intended for this item in the pipeline: CREATE, UPDATE, or DELETE.
PRIORITY NUMBER 2 Yes A numerical priority where lower is higher, used to prioritize items in the pipeline.
STATUS VARCHAR2 1000 Yes The status of the application, or log message.
PROCESSING_START_DATE TIMESTAMP Yes Timestamp when this log event was initially created.
PROCESSING_END_DATE TIMESTAMP Timestamp when this log event was finished.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
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_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Foreign Keys

Table Foreign Table Foreign Key Column
CSO_PIPELINE_ITEM_LOGS cso_pipelines PIPELINE_ID

Indexes

Index Uniqueness Tablespace Columns
CSO_PIPELINE_ITEM_LOGS_F1 Non Unique Default PIPELINE_ID
CSO_PIPELINE_ITEM_LOGS_PK Unique Default RECORD_ID