Tables [dbo].[BiReportingBusinessCategory]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)15
Created9:23:26 AM Friday, December 7, 2018
Last Modified9:23:44 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_BiReportingBusinessCategory: BiReportingBusinessCategoryIDBiReportingBusinessCategoryIDint4
No
1 - 1
Indexes IX_BiReportingBusinessCategory_ViewName: CategoryNameCategoryNamenvarchar(50)100
No
Descriptionnvarchar(max)max
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_BiReportingBusinessCategory: BiReportingBusinessCategoryIDPK_BiReportingBusinessCategoryBiReportingBusinessCategoryID
Yes
IX_BiReportingBusinessCategory_ViewNameCategoryName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
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
Uses
Used By