SBS_JOB_DEFINITIONS

Job repository table

Details

  • Schema: FUSION

  • Object owner: FND

  • Object type: TABLE

  • Tablespace: TRANSACTION_TABLES

Primary Key

Name Columns

SBS_JOB_DEFINITIONS_PK

JOB_DEFINITION_ID

Columns

Name Datatype Length Precision Not-null Comments
JOB_DEFINITION_ID NUMBER 18 Yes The identifier column for job definition metadata
JOB_DEFINITION_NAME VARCHAR2 100 Yes Unique name for Spectra Job definition metadata.
SPECTRA_SERVICE_NAME VARCHAR2 100 Yes The spectra service that owns this job
JOB_DEFINITION BLOB Yes This column store the metadata required to execute the job. This column would store details related to the container image for the job
VERSION_TAGS VARCHAR2 4000 Yes List of version numbers or deployment identifiers associated with a job definition
DEFAULT_FLAG VARCHAR2 1 Yes Indicator for being the default version of a job definition
DELETED_FLAG VARCHAR2 1 Yes Indicator for soft-deleted record
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.

Indexes

Index Uniqueness Tablespace Columns
SBS_JOB_DEFINITIONS_N1 Non Unique DELETED_FLAG, SPECTRA_SERVICE_NAME, JOB_DEFINITION_NAME, DEFAULT_FLAG, VERSION_TAGS
SBS_JOB_DEFINITIONS_U1 Unique FUSION_TS_TX_DATA JOB_DEFINITION_ID
SBS_JOB_DEFINITIONS_U2 Unique FUSION_TS_TX_DATA CASE WHEN "DELETED_FLAG" = 'N' THEN "JOB_DEFINITION_NAME" ELSE NULL END, CASE WHEN "DELETED_FLAG" = 'N' THEN "SPECTRA_SERVICE_NAME" ELSE NULL END, CASE WHEN "DELETED_FLAG" = 'N' THEN "VERSION_TAGS" ELSE NULL END