tblEnumValue in Lync Server 2013
Topic Last Modified: 2012-06-28
tblEnumValue is a hardcoded table that contains the Visibility and Behavior values of the attributes that are used in the Node table.
Columns
Column | Type | Description |
---|---|---|
valueID |
smallint, not null |
ID of the value. |
attributeID |
smallint, not null |
ID of the attribute. |
attributeValue |
nvarchar (256), not null |
Name of the value. |
Keys
Column | Description |
---|---|
valueID |
Primary key. |
attributeID |
Foreign key with lookup in tblEnumAttribute.attributeID table. |
Table Values
valueID | attributeID | attributeValue |
---|---|---|
2 |
1 |
private |
3 |
1 |
scope |
4 |
2 |
normal |
5 |
2 |
auditorium |
6 |
1 |
open |
See Also