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