Tables [dbo].[CoGroupRights]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:55:48 AM Thursday, March 21, 2019
Last Modified1:10:34 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK_CoGroupRights: GroupID\SecuredObjectIDForeign Keys FK_CoGroupRights_GroupID_CoGroups: [dbo].[CoGroups].GroupIDGroupIDchar(10)10
False
Cluster Primary Key PK_CoGroupRights: GroupID\SecuredObjectIDSecuredObjectIDvarchar(30)30
False
Rightsint4
False
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
timestamptimestamp8
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_CoGroupRights: GroupID\SecuredObjectIDPK_CoGroupRightsGroupID, SecuredObjectID
True
80
NameColumns
FK_CoGroupRights_GroupID_CoGroupsGroupID->[dbo].[CoGroups].[GroupID]
CREATE TABLE [dbo].[CoGroupRights]
(
[GroupID] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SecuredObjectID] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Rights] [int] NOT NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_CoGroupRights_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_CoGroupRights_LastUpdate] DEFAULT (getdate()),
[timestamp] [timestamp] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CoGroupRights] ADD CONSTRAINT [PK_CoGroupRights] PRIMARY KEY CLUSTERED  ([GroupID], [SecuredObjectID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CoGroupRights] ADD CONSTRAINT [FK_CoGroupRights_GroupID_CoGroups] FOREIGN KEY ([GroupID]) REFERENCES [dbo].[CoGroups] ([GroupID])
GO
  • [dbo].[v_CoGroupRights]