[dbo].[BiReportingBusinessCategory]
CREATE TABLE [dbo].[BiReportingBusinessCategory]
(
[BiReportingBusinessCategoryID] [int] NOT NULL IDENTITY(1, 1),
[CategoryName] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Description] [nvarchar] (max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[BiReportingBusinessCategory] ADD CONSTRAINT [PK_BiReportingBusinessCategory] PRIMARY KEY NONCLUSTERED ([BiReportingBusinessCategoryID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[BiReportingBusinessCategory] ADD CONSTRAINT [IX_BiReportingBusinessCategory_ViewName] UNIQUE NONCLUSTERED ([CategoryName]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[BiReportingBusinessCategory] TO [MssExec]
GRANT INSERT ON [dbo].[BiReportingBusinessCategory] TO [MssExec]
GRANT DELETE ON [dbo].[BiReportingBusinessCategory] TO [MssExec]
GRANT UPDATE ON [dbo].[BiReportingBusinessCategory] TO [MssExec]
GO