Tables [dbo].[SessionData]
Properties
PropertyValue
CollationLatin1_General_CI_AS_KS_WS
Row Count0
Created12:33:27 PM Tuesday, March 06, 2007
Last Modified5:14:34 PM Tuesday, March 06, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Key IDX_SessionData: SessionIDSessionIDvarchar(32)32
No
CompiledDefinitionuniqueidentifier16
Yes
Indexes IX_SessionSnapshotID: SnapshotDataIDSnapshotDataIDuniqueidentifier16
Yes
IsPermanentSnapshotbit1
Yes
ReportPathnvarchar(424)848
Yes
Timeoutint4
No
AutoRefreshSecondsint4
Yes
Indexes IX_SessionCleanup: ExpirationExpirationdatetime8
No
ShowHideInfoimagemax
Yes
DataSourceInfoimagemax
Yes
OwnerIDuniqueidentifier16
No
EffectiveParamsntextmax
Yes
CreationTimedatetime8
No
HasInteractivitybit1
Yes
SnapshotExpirationDatedatetime8
Yes
HistoryDatedatetime8
Yes
PageHeightfloat8
Yes
PageWidthfloat8
Yes
TopMarginfloat8
Yes
BottomMarginfloat8
Yes
LeftMarginfloat8
Yes
RightMarginfloat8
Yes
AwaitingFirstExecutionbit1
Yes
Indexes Indexes
NameColumnsUnique
Cluster Key IDX_SessionData: SessionIDIDX_SessionDataSessionID
Yes
IX_SessionCleanupExpiration
IX_SessionSnapshotIDSnapshotDataID
Permissions
TypeActionOwning Principal
GrantDeleteRSExecRole
GrantInsertRSExecRole
GrantReferencesRSExecRole
GrantSelectRSExecRole
GrantUpdateRSExecRole
SQL Script
CREATE TABLE [dbo].[SessionData]
(
[SessionID] [varchar] (32) COLLATE Latin1_General_CI_AS_KS_WS NOT NULL,
[CompiledDefinition] [uniqueidentifier] NULL,
[SnapshotDataID] [uniqueidentifier] NULL,
[IsPermanentSnapshot] [bit] NULL,
[ReportPath] [nvarchar] (424) COLLATE Latin1_General_CI_AS_KS_WS NULL,
[Timeout] [int] NOT NULL,
[AutoRefreshSeconds] [int] NULL,
[Expiration] [datetime] NOT NULL,
[ShowHideInfo] [image] NULL,
[DataSourceInfo] [image] NULL,
[OwnerID] [uniqueidentifier] NOT NULL,
[EffectiveParams] [ntext] COLLATE Latin1_General_CI_AS_KS_WS NULL,
[CreationTime] [datetime] NOT NULL,
[HasInteractivity] [bit] NULL,
[SnapshotExpirationDate] [datetime] NULL,
[HistoryDate] [datetime] NULL,
[PageHeight] [float] NULL,
[PageWidth] [float] NULL,
[TopMargin] [float] NULL,
[BottomMargin] [float] NULL,
[LeftMargin] [float] NULL,
[RightMargin] [float] NULL,
[AwaitingFirstExecution] [bit] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_SessionCleanup] ON [dbo].[SessionData] ([Expiration]) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IDX_SessionData] ON [dbo].[SessionData] ([SessionID]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_SessionSnapshotID] ON [dbo].[SessionData] ([SnapshotDataID]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[SessionData] TO [RSExecRole]
GRANT SELECT ON  [dbo].[SessionData] TO [RSExecRole]
GRANT INSERT ON  [dbo].[SessionData] TO [RSExecRole]
GRANT DELETE ON  [dbo].[SessionData] TO [RSExecRole]
GRANT UPDATE ON  [dbo].[SessionData] TO [RSExecRole]
GO
Uses
Used By