Copyright © Cloud Software Group, Inc. All rights reserved. |
The user_values table holds the values for all attributes defined for all users and groups on the system.TABLE user_values (
node_id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
attribute_id INTEGER NOT NULL,
attribute_value VARCHAR(24) NOT NULL,
user_type VARCHAR(1) NOT NULL)
Note: If an attribute value is longer than 24 characters multiple rows are used to store the value. Each segment of the value is uniquely identified by its attribute_id value, as defined in the user_attrib table.
These keys enforce the DELETE CASCADE referential action.
The user_values table contains one or more rows per assigned attribute per (user or group) queue on the system. If an attribute value’s length is:
a Move System Information is performed, if the flag_table indicates that the Users data area has been modified. a Move System Information is performed, if the flag_table indicates that the Users data area has been modified.
Copyright © Cloud Software Group, Inc. All rights reserved. |