Description
Used by the SQL Personalization Provider to store the path for which Web Parts personalization state has been saved.
Columns
| Name |
Type |
Required? |
Defaults To |
Description |
| ApplicationId |
uniqueidentifier |
Yes |
|
Application ID
|
| PathId |
uniqueidentifier |
Yes |
(newid()) |
Path ID
|
| Path |
nvarchar(256) |
Yes |
|
Path name
|
| LoweredPath |
nvarchar(256) |
Yes |
|
Path name (lowercase)
|
Relationships
Indexes
| Name |
Type |
Columns |
| aspnet_Paths_index |
Unique, Clustered |
ApplicationId, LoweredPath |
| PK__aspnet_Paths__44FF419A |
Unique |
PathId |
Referencing Views
Definition
CREATE TABLE [aspnet_Paths]
(
[ApplicationId] uniqueidentifier NOT NULL,
[PathId] uniqueidentifier NOT NULL DEFAULT ((newid())),
[Path] nvarchar(256) NOT NULL,
[LoweredPath] nvarchar(256) NOT NULL
CONSTRAINT [PK_aspnet_Paths] PRIMARY KEY
(
[PathId]
)
)
ASP.NET 2.0 Provider Database