FUN_QRTZ_FIRED_TRIGGERS

This table stores status information relating to triggers that have fired and the relevant execution information about the related job.

Details

  • Schema: FUSION

  • Object owner: FUN

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

FUN_QRTZ_FIRED_TRIGGERS_PK

SCHED_NAME, ENTRY_ID

Columns

Name Datatype Length Precision Not-null Comments
SCHED_NAME VARCHAR2 120 Yes Name for the given quartz schedule.
SCHED_TIME NUMBER 13 Schedule time for next triggers to fire.
ENTRY_ID VARCHAR2 95 Yes Auto generated unique identifier.
TRIGGER_NAME VARCHAR2 256 Yes Functional name of the quartz trigger.
TRIGGER_GROUP VARCHAR2 80 Yes Group associated with quartz trigger.
IS_VOLATILE VARCHAR2 1 Denotes persistence of jobs between program shutdown.
IS_NONCONCURRENT VARCHAR2 1 Stores concurrency of the job. If non-concurrent then one job will run at a time. Used for cluster coordination purposes and clearing up blocked states.
INSTANCE_NAME VARCHAR2 80 Yes Holds the instance type (CLUSTERED / NON_CLUSTERED).
FIRED_TIME NUMBER 13 Yes Last execution time of the trigger.
PRIORITY NUMBER 13 Yes Priority associated with a job trigger.
STATE VARCHAR2 16 Yes Stores the state of the trigger.
JOB_NAME VARCHAR2 256 Functional name of the quartz job.
JOB_GROUP VARCHAR2 80 Group associated with quartz job.
IS_STATEFUL VARCHAR2 1 Stores statefulness of the job. If stateful then one job will run at a time.
REQUESTS_RECOVERY VARCHAR2 1 Instructs the Scheduler whether or not the Job should be re-executed if a 'recovery' or 'fail-over' situation is encountered. Fail-over occurs when one of the nodes fails while in the midst of executing one or more jobs. A recovery situation is every situation that produce an 'Hard-shutdown'.
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.

Indexes

Index Uniqueness Tablespace Columns
FUN_QRTZ_FIRED_TRIGGERS_N1 Non Unique Default JOB_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N10 Non Unique Default SCHED_NAME, INSTANCE_NAME
FUN_QRTZ_FIRED_TRIGGERS_N11 Non Unique Default SCHED_NAME, JOB_NAME, JOB_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N12 Non Unique Default SCHED_NAME, JOB_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N13 Non Unique Default SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N14 Non Unique Default SCHED_NAME, TRIGGER_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N2 Non Unique Default TRIGGER_NAME
FUN_QRTZ_FIRED_TRIGGERS_N3 Non Unique Default TRIGGER_GROUP
FUN_QRTZ_FIRED_TRIGGERS_N5 Non Unique Default IS_VOLATILE
FUN_QRTZ_FIRED_TRIGGERS_N6 Non Unique Default REQUESTS_RECOVERY
FUN_QRTZ_FIRED_TRIGGERS_N7 Non Unique Default IS_STATEFUL
FUN_QRTZ_FIRED_TRIGGERS_N8 Non Unique Default JOB_NAME
FUN_QRTZ_FIRED_TRIGGERS_N9 Non Unique Default INSTANCE_NAME
FUN_QRTZ_FIRED_TRIGGERS_U1 Unique Default ENTRY_ID
FUN_QRTZ_FIRED_TRIGGERS_U2 Unique Default SCHED_NAME, ENTRY_ID