Tables [dbo].[AccountProfileServiceStatus]
This table contains values that can be assigned to an account profile service override
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)3
Created4:57:05 PM Thursday, September 7, 2006
Last Modified1:48:32 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDescription
Primary Key PK_AccountProfileServiceStatus: AccountProfileServiceStatusIDAccountProfileServiceStatusIDint4
No
1 - 1Primary key of this table
Namevarchar(30)30
No
Text that can be used to describe a service status override state, such as "Approved" and "Not Approved"
Foreign Keys FK_AccountProfileServicesStatus_AccountProfileServiceStatusBookmarkGroup: [dbo].[AccountProfileServiceStatusBookmarkGroup].AccountProfileServiceStatusBookmarkGroupFIDAccountProfileServiceStatusBookmarkGroupFIDint4
Yes
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_AccountProfileServiceStatus: AccountProfileServiceStatusIDPK_AccountProfileServiceStatusAccountProfileServiceStatusID
Yes
80
Foreign Keys Foreign Keys
NameColumns
FK_AccountProfileServicesStatus_AccountProfileServiceStatusBookmarkGroupAccountProfileServiceStatusBookmarkGroupFID->[dbo].[AccountProfileServiceStatusBookmarkGroup].[AccountProfileServiceStatusBookmarkGroupID]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountProfileServiceStatus]
(
[AccountProfileServiceStatusID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[AccountProfileServiceStatusBookmarkGroupFID] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatus] ADD CONSTRAINT [PK_AccountProfileServiceStatus] PRIMARY KEY NONCLUSTERED  ([AccountProfileServiceStatusID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileServiceStatus] ADD CONSTRAINT [FK_AccountProfileServicesStatus_AccountProfileServiceStatusBookmarkGroup] FOREIGN KEY ([AccountProfileServiceStatusBookmarkGroupFID]) REFERENCES [dbo].[AccountProfileServiceStatusBookmarkGroup] ([AccountProfileServiceStatusBookmarkGroupID])
GO
GRANT SELECT ON  [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountProfileServiceStatus] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountProfileServiceStatus] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'This table contains values that can be assigned to an account profile service override', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', NULL, NULL
GO
EXEC sp_addextendedproperty N'MS_Description', N'Primary key of this table', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', 'COLUMN', N'AccountProfileServiceStatusID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'Text that can be used to describe a service status override state, such as "Approved" and "Not Approved"', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileServiceStatus', 'COLUMN', N'Name'
GO
Uses
Used By