Tables [dbo].[AccountProfileAvailableServices]
This table provides a list of services that can be assigned to a national account
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)17
Created4:57:05 PM Thursday, September 7, 2006
Last Modified11:13:37 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDescription
Primary Key PK_AccountProfileAvailableServices: AccountProfileAvailableServiceIDAccountProfileAvailableServiceIDint4
No
1 - 1Primary key of this table
Namevarchar(30)30
No
The text description of the service to be available for assignment to a national account
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_AccountProfileAvailableServices: AccountProfileAvailableServiceIDPK_AccountProfileAvailableServicesAccountProfileAvailableServiceID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountProfileAvailableServices]
(
[AccountProfileAvailableServiceID] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountProfileAvailableServices] ADD CONSTRAINT [PK_AccountProfileAvailableServices] PRIMARY KEY NONCLUSTERED  ([AccountProfileAvailableServiceID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountProfileAvailableServices] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountProfileAvailableServices] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'This table provides a list of services that can be assigned to a national account', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', NULL, NULL
GO
EXEC sp_addextendedproperty N'MS_Description', N'Primary key of this table', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', 'COLUMN', N'AccountProfileAvailableServiceID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'The text description of the service to be available for assignment to a national account', 'SCHEMA', N'dbo', 'TABLE', N'AccountProfileAvailableServices', 'COLUMN', N'Name'
GO
Uses
Used By