Tables [dbo].[AdvanceBankingServiceProviderType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created5:00:23 PM Monday, April 21, 2008
Last Modified1:46:12 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_AdvanceBankingServiceProviderType: AdvanceBankingServiceProviderTypeIDAdvanceBankingServiceProviderTypeIDint4
No
1 - 1
Descriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_AdvanceBankingServiceProviderType: AdvanceBankingServiceProviderTypeIDPK_AdvanceBankingServiceProviderTypeAdvanceBankingServiceProviderTypeID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AdvanceBankingServiceProviderType]
(
[AdvanceBankingServiceProviderTypeID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AdvanceBankingServiceProviderType] ADD CONSTRAINT [PK_AdvanceBankingServiceProviderType] PRIMARY KEY CLUSTERED  ([AdvanceBankingServiceProviderTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AdvanceBankingServiceProviderType] TO [MssExec]
GRANT INSERT ON  [dbo].[AdvanceBankingServiceProviderType] TO [MssExec]
GRANT DELETE ON  [dbo].[AdvanceBankingServiceProviderType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AdvanceBankingServiceProviderType] TO [MssExec]
GO
Uses
Used By