CSO_DB_VIEW_COUNT_QUEUE

This table stores transient details of how many times a topic has been viewed on the client application. The rows in this table will be deleted after the view count is merged in to DBVIEWCOUNT table for each topic.

Details

  • Schema: FUSION

  • Object owner: CSO

  • Object type: TABLE

  • Tablespace: TRANSACTION_TABLES

Primary Key

Name Columns

CSO_DB_VIEW_COUNT_QUEUE_PK

RECORD_ID

Columns

Name Datatype Length Not-null Comments
RECORD_ID VARCHAR2 32 Yes This is the primary key of the table.
DATE_ADDED TIMESTAMP Yes This is the date that the record was added to the repository.
DATE_MODIFIED TIMESTAMP Yes Date record was last modified in repository.
TOPIC_ID VARCHAR2 32 Yes This is the GUID reference to the topic record.
COUNT NUMBER Yes The (incremental) number of times the topic was viewed.
OPTIMISTIC_FAILURE_COUNT NUMBER The count of optimistic locking failures faced when merging this record into DBVIEWCOUNT
OTHER_FAILURE_COUNT NUMBER The count of other failures faced when merging this record into DBVIEWCOUNT

Indexes

Index Uniqueness Columns
CSO_DB_VIEW_COUNT_QUEUE_U1 Unique RECORD_ID
CSO_DB_VIEW_COUNT_QUEUE_N1 Non Unique DATE_ADDED
CSO_DB_VIEW_COUNT_QUEUE_N2 Non Unique DATE_MODIFIED
CSO_DB_VIEW_COUNT_QUEUE_N3 Non Unique TOPIC_ID