Tables [dbo].[ExecutionCache]
Properties
PropertyValue
Row Count0
Created12:33:27 PM Tuesday, March 06, 2007
Last Modified12:33:28 PM Tuesday, March 06, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Primary Key PK_ExecutionCache: ExecutionCacheIDExecutionCacheIDuniqueidentifier16
No
Cluster Key IX_ExecutionCache: AbsoluteExpiration\ReportID\SnapshotDataIDReportIDuniqueidentifier16
No
ExpirationFlagsint4
No
Cluster Key IX_ExecutionCache: AbsoluteExpiration\ReportID\SnapshotDataIDAbsoluteExpirationdatetime8
Yes
RelativeExpirationint4
Yes
Cluster Key IX_ExecutionCache: AbsoluteExpiration\ReportID\SnapshotDataIDSnapshotDataIDuniqueidentifier16
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_ExecutionCache: ExecutionCacheIDPK_ExecutionCacheExecutionCacheID
Yes
Cluster Key IX_ExecutionCache: AbsoluteExpiration\ReportID\SnapshotDataIDIX_ExecutionCacheAbsoluteExpiration, ReportID, SnapshotDataID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteRSExecRole
GrantInsertRSExecRole
GrantReferencesRSExecRole
GrantSelectRSExecRole
GrantUpdateRSExecRole
SQL Script
CREATE TABLE [dbo].[ExecutionCache]
(
[ExecutionCacheID] [uniqueidentifier] NOT NULL,
[ReportID] [uniqueidentifier] NOT NULL,
[ExpirationFlags] [int] NOT NULL,
[AbsoluteExpiration] [datetime] NULL,
[RelativeExpiration] [int] NULL,
[SnapshotDataID] [uniqueidentifier] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ExecutionCache] ADD CONSTRAINT [PK_ExecutionCache] PRIMARY KEY NONCLUSTERED ([ExecutionCacheID]) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IX_ExecutionCache] ON [dbo].[ExecutionCache] ([AbsoluteExpiration] DESC, [ReportID], [SnapshotDataID]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[ExecutionCache] TO [RSExecRole]
GRANT SELECT ON  [dbo].[ExecutionCache] TO [RSExecRole]
GRANT INSERT ON  [dbo].[ExecutionCache] TO [RSExecRole]
GRANT DELETE ON  [dbo].[ExecutionCache] TO [RSExecRole]
GRANT UPDATE ON  [dbo].[ExecutionCache] TO [RSExecRole]
GO
Uses
Used By