Tables [dbo].[ARCCustomerContactPhoneType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)4
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_ARCCustomerContactPhoneType: ARCCustomerContactPhoneTypeIdARCCustomerContactPhoneTypeIdint4
No
1 - 1
Indexes IX_ARCCustomerContactPhoneType_TypeName: TypeNameTypeNamevarchar(8)8
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_ARCCustomerContactPhoneType: ARCCustomerContactPhoneTypeIdPK_ARCCustomerContactPhoneTypeARCCustomerContactPhoneTypeId
Yes
IX_ARCCustomerContactPhoneType_TypeNameTypeName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ARCCustomerContactPhoneType]
(
[ARCCustomerContactPhoneTypeId] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCCustomerContactPhoneType] ADD CONSTRAINT [PK_ARCCustomerContactPhoneType] PRIMARY KEY NONCLUSTERED  ([ARCCustomerContactPhoneTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCCustomerContactPhoneType] ADD CONSTRAINT [IX_ARCCustomerContactPhoneType_TypeName] UNIQUE NONCLUSTERED  ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ARCCustomerContactPhoneType] TO [MssExec]
GRANT INSERT ON  [dbo].[ARCCustomerContactPhoneType] TO [MssExec]
GRANT DELETE ON  [dbo].[ARCCustomerContactPhoneType] TO [MssExec]
GRANT UPDATE ON  [dbo].[ARCCustomerContactPhoneType] TO [MssExec]
GO
Uses
Used By