Tables [dbo].[GroupsnTables]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created4:57:10 PM Thursday, September 7, 2006
Last Modified11:13:39 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_GroupsnTables: GntPriKeyGntPriKeyint4
No
1 - 1
IsTablebit1
No
Cluster Key IX_GroupsnTables: EnglishName\ParentEnglishNamevarchar(128)128
No
Cluster Key IX_GroupsnTables: EnglishName\ParentForeign Keys FK_GroupsnTables_GroupsnTables: [dbo].[GroupsnTables].ParentParentint4
Yes
ToolTipvarchar(1024)1024
Yes
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_GroupsnTables: GntPriKeyPK_GroupsnTablesGntPriKey
Yes
80
Cluster Key IX_GroupsnTables: EnglishName\ParentIX_GroupsnTablesEnglishName, Parent
Yes
80
Foreign Keys Foreign Keys
NameColumns
FK_GroupsnTables_GroupsnTablesParent->[dbo].[GroupsnTables].[GntPriKey]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[GroupsnTables]
(
[GntPriKey] [int] NOT NULL IDENTITY(1, 1),
[IsTable] [bit] NOT NULL,
[EnglishName] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Parent] [int] NULL,
[ToolTip] [varchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GroupsnTables] ADD CONSTRAINT [PK_GroupsnTables] PRIMARY KEY NONCLUSTERED  ([GntPriKey]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GroupsnTables] ADD CONSTRAINT [IX_GroupsnTables] UNIQUE CLUSTERED  ([EnglishName], [Parent]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GroupsnTables] ADD CONSTRAINT [FK_GroupsnTables_GroupsnTables] FOREIGN KEY ([Parent]) REFERENCES [dbo].[GroupsnTables] ([GntPriKey])
GO
GRANT SELECT ON  [dbo].[GroupsnTables] TO [MssExec]
GRANT INSERT ON  [dbo].[GroupsnTables] TO [MssExec]
GRANT DELETE ON  [dbo].[GroupsnTables] TO [MssExec]
GRANT UPDATE ON  [dbo].[GroupsnTables] TO [MssExec]
GO
Uses