Tables [dbo].[AdminSection]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)20
Created4:03:38 PM Thursday, May 10, 2012
Last Modified11:13:37 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDescription
Cluster Primary Key PK_AdminSection: AdminSectionIDAdminSectionIDint4
No
1 - 1The primary key.
Indexes IX_AdminSection_SectionDescription: SectionDescriptionSectionDescriptionvarchar(64)64
No
The user friendly section description this role belongs to.
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AdminSection: AdminSectionIDPK_AdminSectionAdminSectionID
Yes
IX_AdminSection_SectionDescriptionSectionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AdminSection]
(
[AdminSectionID] [int] NOT NULL IDENTITY(1, 1),
[SectionDescription] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AdminSection] ADD CONSTRAINT [PK_AdminSection] PRIMARY KEY CLUSTERED  ([AdminSectionID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AdminSection] ADD CONSTRAINT [IX_AdminSection_SectionDescription] UNIQUE NONCLUSTERED  ([SectionDescription]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AdminSection] TO [MssExec]
GRANT INSERT ON  [dbo].[AdminSection] TO [MssExec]
GRANT DELETE ON  [dbo].[AdminSection] TO [MssExec]
GRANT UPDATE ON  [dbo].[AdminSection] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'The primary key.', 'SCHEMA', N'dbo', 'TABLE', N'AdminSection', 'COLUMN', N'AdminSectionID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'The user friendly section description this role belongs to.', 'SCHEMA', N'dbo', 'TABLE', N'AdminSection', 'COLUMN', N'SectionDescription'
GO
Uses
Used By