Tables [dbo].[ExecutionLog]
Properties
PropertyValue
CollationLatin1_General_CI_AS_KS_WS
Row Count1
Created12:33:31 PM Tuesday, March 06, 2007
Last Modified12:33:31 PM Tuesday, March 06, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
InstanceNamenvarchar(38)76
No
ReportIDuniqueidentifier16
Yes
UserNamenvarchar(260)520
Yes
RequestTypebit1
No
Formatnvarchar(26)52
Yes
Parametersntextmax
Yes
Cluster Key IX_ExecutionLog: TimeStartTimeStartdatetime8
No
TimeEnddatetime8
No
TimeDataRetrievalint4
No
TimeProcessingint4
No
TimeRenderingint4
No
Sourcetinyint1
No
Statusnvarchar(32)64
No
ByteCountbigint8
No
RowCountbigint8
No
Indexes Indexes
NameColumns
Cluster Key IX_ExecutionLog: TimeStartIX_ExecutionLogTimeStart
Permissions
TypeActionOwning Principal
GrantDeleteRSExecRole
GrantInsertRSExecRole
GrantReferencesRSExecRole
GrantSelectRSExecRole
GrantUpdateRSExecRole
SQL Script
CREATE TABLE [dbo].[ExecutionLog]
(
[InstanceName] [nvarchar] (38) COLLATE Latin1_General_CI_AS_KS_WS NOT NULL,
[ReportID] [uniqueidentifier] NULL,
[UserName] [nvarchar] (260) COLLATE Latin1_General_CI_AS_KS_WS NULL,
[RequestType] [bit] NOT NULL,
[Format] [nvarchar] (26) COLLATE Latin1_General_CI_AS_KS_WS NULL,
[Parameters] [ntext] COLLATE Latin1_General_CI_AS_KS_WS NULL,
[TimeStart] [datetime] NOT NULL,
[TimeEnd] [datetime] NOT NULL,
[TimeDataRetrieval] [int] NOT NULL,
[TimeProcessing] [int] NOT NULL,
[TimeRendering] [int] NOT NULL,
[Source] [tinyint] NOT NULL,
[Status] [nvarchar] (32) COLLATE Latin1_General_CI_AS_KS_WS NOT NULL,
[ByteCount] [bigint] NOT NULL,
[RowCount] [bigint] NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [IX_ExecutionLog] ON [dbo].[ExecutionLog] ([TimeStart]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[ExecutionLog] TO [RSExecRole]
GRANT SELECT ON  [dbo].[ExecutionLog] TO [RSExecRole]
GRANT INSERT ON  [dbo].[ExecutionLog] TO [RSExecRole]
GRANT DELETE ON  [dbo].[ExecutionLog] TO [RSExecRole]
GRANT UPDATE ON  [dbo].[ExecutionLog] TO [RSExecRole]
GO
Uses
Used By