Tables [dbo].[ShTrackingValueGroups]
PropertyValue
Row Count (~)0
Created12:56:21 AM Thursday, March 21, 2019
Last Modified1:15:36 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_ShTrackingValueGroups: ShTrackingValueGroupIDShTrackingValueGroupIDint4
False
1 - 1
Foreign Keys FK_ShTrackingValueGroups_ShEntryTypeID_ShEntryTypes: [dbo].[ShEntryTypes].ShEntryTypeIDShEntryTypeIDint4
False
ShTrackingGroupIDint4
False
LinkIDint4
True
IsActivebit1
False
((1))
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ShTrackingValueGroups: ShTrackingValueGroupIDPK_ShTrackingValueGroupsShTrackingValueGroupID
True
80
NameColumns
FK_ShTrackingValueGroups_ShEntryTypeID_ShEntryTypesShEntryTypeID->[dbo].[ShEntryTypes].[ShEntryTypeID]
CREATE TABLE [dbo].[ShTrackingValueGroups]
(
[ShTrackingValueGroupID] [int] NOT NULL IDENTITY(1, 1),
[ShEntryTypeID] [int] NOT NULL,
[ShTrackingGroupID] [int] NOT NULL,
[LinkID] [int] NULL,
[IsActive] [bit] NOT NULL CONSTRAINT [DF_ShTrackingValueGroups_IsActive] DEFAULT ((1))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShTrackingValueGroups] ADD CONSTRAINT [PK_ShTrackingValueGroups] PRIMARY KEY CLUSTERED  ([ShTrackingValueGroupID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShTrackingValueGroups] ADD CONSTRAINT [FK_ShTrackingValueGroups_ShEntryTypeID_ShEntryTypes] FOREIGN KEY ([ShEntryTypeID]) REFERENCES [dbo].[ShEntryTypes] ([ShEntryTypeID])
GO