Tables [dbo].[PlasticProviderTypeTransactionErrorProcessing]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
Created1:56:10 PM Wednesday, April 10, 2024
Last Modified1:56:10 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_PlasticProviderTypeTransactionErrorProcessing: ProviderTypeTransactionErrorProcessingIDProviderTypeTransactionErrorProcessingIDint4
No
1 - 1
Foreign Keys FK_PlasticProviderTypeTransactionErrorProcessing_ProviderType: [dbo].[PlasticProviderType].ProviderTypeFIDIndexes IX_PlasticProviderTypeTransactionErrorProcessing_Type_DealType_ErrorNumber: ProviderTypeFID\DealType\ErrorNumberProviderTypeFIDint4
No
Indexes IX_PlasticProviderTypeTransactionErrorProcessing_Type_DealType_ErrorNumber: ProviderTypeFID\DealType\ErrorNumberDealTypechar(1)1
No
Indexes IX_PlasticProviderTypeTransactionErrorProcessing_Type_DealType_ErrorNumber: ProviderTypeFID\DealType\ErrorNumberErrorNumberint4
No
ReportToUserbit1
No
EndsProcessingbit1
No
ErrorMessagevarchar(40)40
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_PlasticProviderTypeTransactionErrorProcessing: ProviderTypeTransactionErrorProcessingIDPK_PlasticProviderTypeTransactionErrorProcessingProviderTypeTransactionErrorProcessingID
Yes
IX_PlasticProviderTypeTransactionErrorProcessing_Type_DealType_ErrorNumberProviderTypeFID, DealType, ErrorNumber
Yes
Foreign Keys Foreign Keys
NameColumns
FK_PlasticProviderTypeTransactionErrorProcessing_ProviderTypeProviderTypeFID->[dbo].[PlasticProviderType].[ProviderTypeID]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[PlasticProviderTypeTransactionErrorProcessing]
(
[ProviderTypeTransactionErrorProcessingID] [int] NOT NULL IDENTITY(1, 1),
[ProviderTypeFID] [int] NOT NULL,
[DealType] [char] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[ErrorNumber] [int] NOT NULL,
[ReportToUser] [bit] NOT NULL,
[EndsProcessing] [bit] NOT NULL,
[ErrorMessage] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PlasticProviderTypeTransactionErrorProcessing] ADD CONSTRAINT [PK_PlasticProviderTypeTransactionErrorProcessing] PRIMARY KEY CLUSTERED  ([ProviderTypeTransactionErrorProcessingID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PlasticProviderTypeTransactionErrorProcessing] ADD CONSTRAINT [IX_PlasticProviderTypeTransactionErrorProcessing_Type_DealType_ErrorNumber] UNIQUE NONCLUSTERED  ([ProviderTypeFID], [DealType], [ErrorNumber]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PlasticProviderTypeTransactionErrorProcessing] ADD CONSTRAINT [FK_PlasticProviderTypeTransactionErrorProcessing_ProviderType] FOREIGN KEY ([ProviderTypeFID]) REFERENCES [dbo].[PlasticProviderType] ([ProviderTypeID])
GO
GRANT SELECT ON  [dbo].[PlasticProviderTypeTransactionErrorProcessing] TO [MssExec]
GRANT INSERT ON  [dbo].[PlasticProviderTypeTransactionErrorProcessing] TO [MssExec]
GRANT DELETE ON  [dbo].[PlasticProviderTypeTransactionErrorProcessing] TO [MssExec]
GRANT UPDATE ON  [dbo].[PlasticProviderTypeTransactionErrorProcessing] TO [MssExec]
GO
Uses
Used By