FCM_SCHEDULER_JOBS

This table stores the jobs being run by the scheduler.

Details

Object type: TABLE

Primary Key

Name Columns

FCM_SCHEDULER_JOBS_PK

JOB_ID

Columns

Name Data Type Length Precision Scale Null Allowed Comments

JOB_ID

NUMBER

 

18

0

No

Job ID, primary key

APP_ID

NUMBER

 

3

0

No

Application ID

JOB_CODE

VARCHAR2

60

   

No

The internal code of the job

JOB_NAME

VARCHAR2

256

   

No

The job name

SERVER

VARCHAR2

256

   

Yes

The server name the job is scheduled to run against

START_DATE

DATE

     

No

The scheduled start date of the job

RECURRING

VARCHAR2

1

   

No

Whether the job is recurring or not

INTERVAL

NUMBER

     

Yes

For a recurring job, the interval between executions

CLASS_NAME

VARCHAR2

255

   

No

The class name to call

METHOD

VARCHAR2

255

   

No

The method name to call

STATUS_ID

NUMBER

 

3

0

No

The status of the job: 32=pending, 6=running, 1=closed, #=error

MESSAGE

VARCHAR2

4000

   

Yes

Any messages passed on by the job

ACTUAL_START_DATE

DATE

     

Yes

The actual start date of the job

ACTUAL_END_DATE

DATE

     

Yes

The actual end date of the job

OBJECT_VERSION_NUMBER

NUMBER

 

9

0

No

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.

LAST_UPDATE_LOGIN

NUMBER

     

Yes

Who column. Stores the ID of the user who last updated this row.

LAST_UPDATED_BY

VARCHAR2

255

   

No

Who column. Stores the ID of the user who last updated this row.

LAST_UPDATE_DATE

DATE

     

No

Who column. Stores the date when this row was last updated.

CREATED_BY

VARCHAR2

255

   

No

Who column. Stores the ID of the user who created this row.

CREATION_DATE

DATE

     

No

Who column. Stores the date when this row was created in the database.

APP_KEY

VARCHAR2

100

   

Yes

The application key of the job

NAME_TOKENS

VARCHAR2

1000

   

Yes

The name tokens, if any, for translating the job name

CREATOR_USER_ROLE

NUMBER

 

9

0

Yes

The user role of the creator of the job

USER_CREATED

VARCHAR2

1

   

No

Whether the job was submitted by a user or a system job

RESULTS_TASK_FLOW

VARCHAR2

255

   

Yes

The task flow of the results of the dialog

RESULTS

CLOB

     

Yes

The results of the job

PERCENT_COMPLETE

NUMBER

 

3

0

Yes

Percent complete of the job, if the job supports it

PARAMETERS

CLOB

     

Yes

The parameters of the job

Indexes

Index Uniqueness Columns

FCM_SCHEDULER_JOBS_N1

NONUNIQUE

APP_ID, STATUS_ID

FCM_SCHEDULER_JOBS_N2

NONUNIQUE

APP_ID, JOB_CODE, STATUS_ID

FCM_SCHEDULER_JOBS_PK

UNIQUE

JOB_ID