Copyright © Cloud Software Group, Inc. All rights reserved. |
The process_attributes table stores process attribute definitions, which provide configuration information for iProcess Engine server processes.The process_attributes table is structured as follows:TABLE process_attributes (
logical_machine_id INTEGER NOT NULL,
logical_process_name VARCHAR(10) NOT NULL,
logical_process_instance INTEGER NOT NULL,
attribute_name VARCHAR(50) NOT NULL,
attribute_value VARCHAR(1024) NOT NULL,
attribute_type VARCHAR(2) NOT NULL)
ID of the server where the process instance that this attribute applies to is running, as defined in the node_cluster table.A value of 0 means that this attribute applies to all servers that are part of this node. A value of ALL means that this attribute applies to all processes on the indicated server.Note: See "Administering iProcess Engine Server Processes" in TIBCO iProcess Engine Administrator's Guide for a list of logical process names. A value of 0 means that this attribute applies to all instances of the indicated process. Note: See "Administering Process Attributes" in TIBCO iProcess Engine Administrator's Guide for a list of the available process attributes. Note: See "Administering Process Attributes" in TIBCO iProcess Engine Administrator's Guide for a list of the valid values for each process attributes. Note: All attribute_values are stored as strings in this table. This value determines how the value is returned to the SWDIR\bin\swadm interface.
The process_attribute table contains one row for each unique definition of a process attribute on the system.
a new process attribute definition is added, either at installation or by using the SWDIR\util\swadm utility.
Copyright © Cloud Software Group, Inc. All rights reserved. |