Tables [dbo].[ReportGroup]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)1
Created3:36:01 PM Tuesday, November 18, 2014
Last Modified7:24:42 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ReportGroup: ReportGroupIDReportGroupIDint4
No
1 - 1
Indexes IX_ReportGroup_Name: NameNamevarchar(100)100
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_ReportGroup: ReportGroupIDPK_ReportGroupReportGroupID
Yes
IX_ReportGroup_NameName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportGroup]
(
[ReportGroupID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportGroup] ADD CONSTRAINT [PK_ReportGroup] PRIMARY KEY CLUSTERED  ([ReportGroupID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportGroup] ADD CONSTRAINT [IX_ReportGroup_Name] UNIQUE NONCLUSTERED  ([Name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportGroup] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportGroup] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportGroup] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportGroup] TO [MssExec]
GO
Uses
Used By