WEBDASHBOARDFOLDER
Contains a list of of folders to which dashboard pages can belong.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(200) |
|
Default = '' |
Name of the folder. |
DESCRIPTION |
nvarchar(1000) |
|
Default = '' |
Description of the folder. |
PATH |
nvarchar(1000) |
|
Default = '' |
Fully-qualified path to the folder. |
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 |
PARENTID |
uniqueidentifier |
yes |
WEBDASHBOARDFOLDER.ID
|
FK to WEBDASHBOARDFOLDER |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_WEBDASHBOARDFOLDER_DATEADDED |
DATEADDED |
|
|
yes |
IX_WEBDASHBOARDFOLDER_DATECHANGED |
DATECHANGED |
|
|
|
PK_WEBDASHBOARDFOLDER |
ID |
yes |
yes |
|
UC_WEBDASHBOARDFOLDER_PATH |
PATH |
yes |
|
|
Triggers
Referenced by