Tables [dbo].[ARCCustomerContact]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)0
Created7:48:55 PM Saturday, February 7, 2026
Last Modified7:48:55 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_ARCCustomerContact: ARCCustomerContactIdIndexes IX_ARCCustomerContact_CustomerNumber: AccountingCustomerFid\ARCCustomerContactIdARCCustomerContactIdint4
No
1 - 1
Foreign Keys FK_ARCCustomerContact_AccountingCustomerFid: [dbo].[AccountingCustomer].AccountingCustomerFidIndexes IX_ARCCustomerContact_CustomerNumber: AccountingCustomerFid\ARCCustomerContactIdAccountingCustomerFidint4
Yes
ContactPersonnvarchar(64)128
No
EmailAddressnvarchar(256)512
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_ARCCustomerContact: ARCCustomerContactIdPK_ARCCustomerContactARCCustomerContactId
Yes
IX_ARCCustomerContact_CustomerNumberAccountingCustomerFid, ARCCustomerContactId
Yes
Foreign Keys Foreign Keys
NameColumns
FK_ARCCustomerContact_AccountingCustomerFidAccountingCustomerFid->[dbo].[AccountingCustomer].[AccountingCustomerId]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ARCCustomerContact]
(
[ARCCustomerContactId] [int] NOT NULL IDENTITY(1, 1),
[AccountingCustomerFid] [int] NULL,
[ContactPerson] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[EmailAddress] [nvarchar] (256) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCCustomerContact] ADD CONSTRAINT [PK_ARCCustomerContact] PRIMARY KEY NONCLUSTERED  ([ARCCustomerContactId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCCustomerContact] ADD CONSTRAINT [IX_ARCCustomerContact_CustomerNumber] UNIQUE NONCLUSTERED  ([AccountingCustomerFid], [ARCCustomerContactId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCCustomerContact] ADD CONSTRAINT [FK_ARCCustomerContact_AccountingCustomerFid] FOREIGN KEY ([AccountingCustomerFid]) REFERENCES [dbo].[AccountingCustomer] ([AccountingCustomerId])
GO
GRANT SELECT ON  [dbo].[ARCCustomerContact] TO [MssExec]
GRANT INSERT ON  [dbo].[ARCCustomerContact] TO [MssExec]
GRANT DELETE ON  [dbo].[ARCCustomerContact] TO [MssExec]
GRANT UPDATE ON  [dbo].[ARCCustomerContact] TO [MssExec]
GO
Uses
Used By