MKT_CAMP_BATCH_JOB_ITEMS

To store details of ESS jobs corresponding to each campaign object.

Details

  • Schema: FUSION

  • Object owner: MKT

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

MKT_CAMP_BATCH_JOB_IT_PK

JOB_ID, JOB_ITEM_ID

Columns

Name Datatype Length Precision Not-null Comments
JOB_ID NUMBER 18 Yes Batch ID. All job items created from one parent batch job have the same batch ID.
JOB_ITEM_ID NUMBER 18 Yes Job Item ID, which is an index number within the job items with the same job ID.
ESS_REQUEST_ID NUMBER 18 Yes Specifies the request ID of the ESS Job.
CAMPAIGN_ID NUMBER 18 Yes Campaign ID, for which the job item is being processed.
CAMPAIGN_ACCOUNT_ID NUMBER 18 Campaign Account ID, for which the job item is being processed.
LEAD_ID NUMBER 18 Specifies the Lead ID of generated lead.
JOB_ITEM_STATUS VARCHAR2 30 Yes Status of the Job Item. Possible values are: NOTSTARTED, INPROGRESS, ERRORED, COMPLETED.
REQUEST_PAYLOAD CLOB Json Payload that is sent over to Eloqua.
RESPONSE_PAYLOAD CLOB Json payload that is received as response from Eloqua.
ERROR_MESSAGE CLOB Contains the error stack trace and error message, whenever an object (job item) fails.
BULK_EXPORT_SYNC_ID NUMBER 18 Specifies the Eloqua's Bulk Export Job Sync ID.
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.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of 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.

Indexes

Index Uniqueness Tablespace Columns
MKT_CAMP_BATCH_JOB_IT_N1 Non Unique Default ESS_REQUEST_ID
MKT_CAMP_BATCH_JOB_IT_N2 Non Unique Default CAMPAIGN_ID, CAMPAIGN_ACCOUNT_ID, LEAD_ID
MKT_CAMP_BATCH_JOB_IT_U1 Unique Default JOB_ID, JOB_ITEM_ID