Tables [dbo].[ARCAlertGroup]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)2
Created7:07:55 PM Thursday, December 17, 2009
Last Modified11:13:37 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Primary Key PK_ARCAlertGroup: ARCAlertGroupIDARCAlertGroupIDint4
No
1 - 1
Indexes IX_ARCAlertGroupDescription: ARCAlertGroupDescriptionARCAlertGroupDescriptionvarchar(128)128
No
DefaultFlagbit1
No
((0))
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_ARCAlertGroup: ARCAlertGroupIDPK_ARCAlertGroupARCAlertGroupID
Yes
80
IX_ARCAlertGroupDescriptionARCAlertGroupDescription
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ARCAlertGroup]
(
[ARCAlertGroupID] [int] NOT NULL IDENTITY(1, 1),
[ARCAlertGroupDescription] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[DefaultFlag] [bit] NOT NULL CONSTRAINT [DF_ARCAlertGroup_DefaultFlag] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCAlertGroup] ADD CONSTRAINT [PK_ARCAlertGroup] PRIMARY KEY NONCLUSTERED  ([ARCAlertGroupID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCAlertGroup] ADD CONSTRAINT [IX_ARCAlertGroupDescription] UNIQUE NONCLUSTERED  ([ARCAlertGroupDescription]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ARCAlertGroup] TO [MssExec]
GRANT INSERT ON  [dbo].[ARCAlertGroup] TO [MssExec]
GRANT DELETE ON  [dbo].[ARCAlertGroup] TO [MssExec]
GRANT UPDATE ON  [dbo].[ARCAlertGroup] TO [MssExec]
GO
Uses
Used By