EGO_BATCH_JOBS

EGO_BATCH_JOBS stores information about the sub process ess jobs which are launched for processing a batch.

Details

  • Schema: FUSION

  • Object owner: EGO

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

EGO_BATCH_JOBS_PK

JOB_ID

Columns

Name Datatype Length Precision Not-null Comments
JOB_ID NUMBER 18 Yes Unique Identifier for the rows in ego_batch_jobs. Used to store the job_id of the jobs being launched for the batch
BATCH_ID NUMBER 18 Yes Batch Identifier for Batch record in EGO_VERSIONS_BATCH
JOB_NUMBER NUMBER 9 Yes Job No corresponding to this job in the context of the batch
STATUS VARCHAR2 20 The job status holds the value STARTING,RUNNING,EXPIRED,ERRORED
REQUEST_ID NUMBER 18 Enterprise Service Scheduler: indicates the request ID of the job that created or 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.
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.

Foreign Keys

Table Foreign Table Foreign Key Column
EGO_BATCH_JOBS ego_versions_batch BATCH_ID

Indexes

Index Uniqueness Tablespace Columns
EGO_BATCH_JOBS_N1 Non Unique Default BATCH_ID, STATUS, JOB_NUMBER
EGO_BATCH_JOBS_U1 Unique Default JOB_ID