Contains the informations about executed job chains and orders. Field | Nullable | Data type | Constraint | Unique Constraint | Description |
---|
ID | NOT NULL | NUMERIC | Primary Key |
| |
|
| SCHEDULER_ID
| NOT NULL | VARCHAR |
|
| X | corresponds to SCHEDULER_ORDER_HISTORY.SPOOLER_ID
| HISTORY_ID | NOT NULL | NUMERIC | |
| X | corresponds to SCHEDULER_ORDER_HISTORY.HISTORY_ID
| NAME
| NOT NULL | VARCHAR |
| |
|
| corresponds to SCHEDULER_ORDER_HISTORY.ORDER_ID e.g. my_order for a given order path /test/my_jobchain,my_order.order.xml | TITLE |
| | |
|
| order title corresponds to INVENTORY_JOB_CHAIN_ORDERS.TITLE | PARENT_FOLDER | NOT NULL | VARCHAR |
| |
|
| job chain folder e.g. /test for a given job chain path /test/my_jobchain.job_chain.xml | PARENT_NAME | NOT NULL | VARCHAR |
| |
|
| job chain name corresponds to SCHEDULER_ORDER_HISTORY.JOB_CHAIN e.g. /test/my_jobchain for a given job chain path /test/my_jobchain.job_chain.xml | PARENT_BASENAME |
| | |
|
| job chain base name e.g. my_jobchain for a given job chain path /test/my_jobchain.job_chain.xml | PARENT_TITLE | |
|
| job chain title corresponds to INVENTORY_JOB_CHAINS.TITLE
| STATE | | |
|
| state of the order inside the job chain corresponds to SCHEDULER_ORDER_HISTORY.STATE | STATE_TEXT |
| | |
|
| state text of the order corresponds to SCHEDULER_ORDER_HISTORY.STATE_TEXT | START_TIME | NOT NULL | DATETIME |
| |
|
| UTC timestamp of the start of the order corresponds to SCHEDULER_ORDER_HISTORY.START_TIME | END_TIME |
| | |
|
| UTC timestamp of the end of the order corresponds to SCHEDULER_ORDER_HISTORY.END_TIME | IS_RUNTIME_DEFINED | NOT NULL | NUMERIC |
| |
|
| specifies if a start time has been configured: corresponds to INVENTORY_ORDERS.IS_RUNTIME_DEFINED
| RESULT_START_CAUSE | NOT NULL | VARCHAR | |
|
| cause of the order start corresponds to INVENTORY_JOB_CHAINS.START_CAUSE
| RESULT_STEPS | NOT NULL | NUMERIC |
| |
|
| number of executed order steps | RESULT_ERROR | NOT NULL | NUMERIC |
| |
|
| specifies if an error occurred in the last executed order step: | RESULT_ERROR_CODE |
| VARCHAR | | |
|
| exception-code of the last executed order step error | RESULT_ERROR_TEXT | | |
|
| exception-message of the last executed order step error | SYNC_COMPLETED | NOT NULL | NUMERIC |
| |
|
| for use by the JobScheduler Reporting Interface only: specifies if a synchronization has been completed: | RESULTS_COMPLETED | NOT NULL | NUMERIC |
| |
|
| for use by the JobScheduler Reporting Interface only: specifies if a aggregation has been completed: | CREATED | NOT NULL | DATETIME |
| |
|
| UTC timestamp of record creation | MODIFIED | NOT NULL | DATETIME |
| |
|
| UTC timestamp of record modification |
|