Tables [dbo].[ReportServer]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)1
Created4:57:08 PM Thursday, September 7, 2006
Last Modified10:27:08 AM Thursday, April 21, 2011
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key pk_ReportServer: ReportServerIdReportServerIdint4
No
1 - 1
ServerUrlvarchar(500)500
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key pk_ReportServer: ReportServerIdpk_ReportServerReportServerId
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportServer]
(
[ReportServerId] [int] NOT NULL IDENTITY(1, 1),
[ServerUrl] [varchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportServer] ADD CONSTRAINT [pk_ReportServer] PRIMARY KEY CLUSTERED  ([ReportServerId]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportServer] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportServer] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportServer] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportServer] TO [MssExec]
GO
Uses