[dbo].[XmlSystemRequestType]
CREATE TABLE [dbo].[XmlSystemRequestType]
(
[XmlSystemRequestTypeId] [int] NOT NULL IDENTITY(1, 1),
[Name] [nvarchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystemRequestType] ADD CONSTRAINT [PK_XmlSystemRequestType] PRIMARY KEY CLUSTERED ([XmlSystemRequestTypeId]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT INSERT ON [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT DELETE ON [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT UPDATE ON [dbo].[XmlSystemRequestType] TO [MssExec]
GO