SVC_PERSONAL_SIGNATURES

This table stores signature details created by agents. SIGNATURE_ID is the primary key of the table.

Details

  • Schema: FUSION

  • Object owner: SVC

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

SVC_PERSONAL_SIGNATURES_PK

SIGNATURE_ID

Columns

Name Datatype Length Precision Not-null Comments
SIGNATURE_ID NUMBER 18 Yes Auto-generated number and the primary key for this table.
CHANNEL_ID NUMBER 18 Channel ID associated with the signature.
SIGNATURE_NUMBER VARCHAR2 30 Yes Auto-generated alpha-numeric value.
SIGNATURE_NAME VARCHAR2 50 Yes Indicates the name of personal signature.
SIGNATURE_CONTENT CLOB Yes This stores the HTML signature body in the CLOB.
USER_PARTY_ID NUMBER 18 Yes Unique identifier of the agent.
DEFAULT_FLAG VARCHAR2 1 Yes Indicates whether the signature is default or not (Y/N).
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of 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.

Indexes

Index Uniqueness Tablespace Columns
SVC_PERSONAL_SIGNATURES_N1 Non Unique Default CHANNEL_ID
SVC_PERSONAL_SIGNATURES_PK Unique Default SIGNATURE_ID
SVC_PERSONAL_SIGNATURES_U1 Unique Default SIGNATURE_NAME, USER_PARTY_ID
SVC_PERSONAL_SIGNATURES_U2 Unique Default SIGNATURE_NUMBER