SEARCHLISTSETTINGS
Contains system-level configuration settings for search lists
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
SETTINGSXML |
xml |
yes |
|
An xml field that contains all of the configurable settings for the search list |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
Foreign Key |
Field Type |
Null |
Notes |
Description |
ID |
uniqueidentifier |
|
SEARCHLISTCATALOG.ID
|
Primary Key. |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
REPLACEMENTSEARCHLISTID |
uniqueidentifier |
yes |
SEARCHLISTCATALOG.ID
|
Defines a foreign key to the SEARCHLISTCATALOG table. If a value is present, then this searchlist will be used in place of the original searchlist, represented by the primary key, throughout the application. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_SEARCHLISTSETTINGS_DATEADDED |
DATEADDED |
|
|
yes |
IX_SEARCHLISTSETTINGS_DATECHANGED |
DATECHANGED |
|
|
|
PK_SEARCHLISTSETTINGS |
ID |
yes |
yes |
|
Triggers