JOBSTATUS_ID | BIGINT NOT NULL | Generated unique key. |
USERS_ID | BIGINT | The id of the User that initiated the job. If system-initiated, this value will be null. |
JOBTYPE | VARCHAR (254) NOT NULL | Job type (e.g. SearchIndex) |
PROPERTIES | VARCHAR (1024) | Request properties used in the job. |
STARTTIME | TIMESTAMP NOT NULL DEFAULT CURRENT TIMESTAMP | Start time for the job. |
LASTUPDATE | TIMESTAMP | Time of last update for the job. |
FINISHTIME | TIMESTAMP | Finish time for the job. |
STATUS | SMALLINT NOT NULL | The current status of the job. Possible values include: -1: running 0: success 1: failed 2: unknown |
PROGRESS | SMALLINT NOT NULL DEFAULT -1 | Progress indicator for the job. -1: unknown progress. Other values are job-dependent. |
INTERNALID | VARCHAR (128) | Reserved for HCL use. |
CALLPROGINFO | VARCHAR (1024) | Free-form string value to identify the calling program. |
STATUSMSG | VARCHAR (4000) | Status message from the calling program. |
OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for the table. Every time there is an update to the table, the counter is incremented. |