Tables [dbo].[AccountProfileServiceStatusBookmarkGroup]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)0
Created1:48:32 PM Wednesday, April 10, 2024
Last Modified1:48:32 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_AccountProfileServiceStatusBookmarkGroup: AccountProfileServiceStatusBookmarkGroupIDAccountProfileServiceStatusBookmarkGroupIDint4
No
1 - 1
Indexes IX_AccountProfileServiceStatusBookMarkGroup_Name: NameNamevarchar(30)30
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_AccountProfileServiceStatusBookmarkGroup: AccountProfileServiceStatusBookmarkGroupIDPK_AccountProfileServiceStatusBookmarkGroupAccountProfileServiceStatusBookmarkGroupID
Yes
IX_AccountProfileServiceStatusBookMarkGroup_NameName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountProfileServiceStatusBookmarkGroup]
(
[AccountProfileServiceStatusBookmarkGroupID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatusBookmarkGroup] ADD CONSTRAINT [PK_AccountProfileServiceStatusBookmarkGroup] PRIMARY KEY NONCLUSTERED  ([AccountProfileServiceStatusBookmarkGroupID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatusBookmarkGroup] ADD CONSTRAINT [IX_AccountProfileServiceStatusBookMarkGroup_Name] UNIQUE NONCLUSTERED  ([Name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountProfileServiceStatusBookmarkGroup] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountProfileServiceStatusBookmarkGroup] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountProfileServiceStatusBookmarkGroup] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountProfileServiceStatusBookmarkGroup] TO [MssExec]
GO
Uses
Used By