![]() |
Copyright © TIBCO Software Inc. All rights reserved. |
The process_config table stores information about each process instance that is defined on the system.TABLE process_config(
logical_machine_id INTEGER NOT NULL,
logical_process_name VARCHAR(10) NOT NULL,
logical_process_instance INTEGER NOT NULL,
enabled SMALLINT NOT NULL,
persistent SMALLINT NOT NULL,
last_known_status VARCHAR(20) NOT NULL,
status_comment VARCHAR(255) NULL)
Note: See "Administering iProcess Engine Server Processes" in TIBCO iProcess Engine Administrator's Guide for a list of logical process names. Flag that defines whether this process instance starts automatically (1) when the iProcess Engine starts, or whether it must be started manually (0). Flag that defines whether this process instance is automatically restarted (1) or not (0) when the iProcess Engine is shut down and restarted.Note: Any row in which the persistent value is 0 is deleted when the iProcess Engine starts up. Note: The process_event_log table provides an audit trail of changes to the status of a process instance. Brief explanation of the last_known_status, as reported to the Process Sentinels by the process.
The process_config table contains one row for each instance of each server process defined on the system.
a new process instance is added, either at installation or by using the SWDIR\util\swadm, SWDIR\util\swsvrmgr utilities or the iProcess Server Manager. a process instance’s settings or status are updated, either by system activity, or by using the SWDIR\util\swadm, SWDIR\util\swsvrmgr utilities or the iProcess Server Manager. a process instance is deleted, either at installation or by using the SWDIR\util\swadm, SWDIR\util\swsvrmgr utilities or the iProcess Server Manager.
![]() |
Copyright © TIBCO Software Inc. All rights reserved. |