Tables [dbo].[SecurityProfile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)33
Created4:57:08 PM Thursday, September 7, 2006
Last Modified11:13:44 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_SecurityProfile: SecProfilePriKeySecProfilePriKeyint4
No
1 - 1
Indexes IX_SecurityProfile_Description: DescriptionDescriptionvarchar(30)30
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_SecurityProfile: SecProfilePriKeyPK_SecurityProfileSecProfilePriKey
Yes
80
IX_SecurityProfile_DescriptionDescription
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[SecurityProfile]
(
[SecProfilePriKey] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SecurityProfile] ADD CONSTRAINT [PK_SecurityProfile] PRIMARY KEY NONCLUSTERED  ([SecProfilePriKey]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SecurityProfile] ADD CONSTRAINT [IX_SecurityProfile_Description] UNIQUE NONCLUSTERED  ([Description]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[SecurityProfile] TO [MssExec]
GRANT INSERT ON  [dbo].[SecurityProfile] TO [MssExec]
GRANT DELETE ON  [dbo].[SecurityProfile] TO [MssExec]
GRANT UPDATE ON  [dbo].[SecurityProfile] TO [MssExec]
GO
Uses
Used By