Tables [dbo].[AccountingCustomerAddressType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created6:56:28 AM Friday, September 12, 2025
Last Modified6:57:32 AM Friday, September 12, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_AccountingCustomerAddressType: AccountingCustomerAddressTypeIdAccountingCustomerAddressTypeIdint4
No
1 - 1
Cluster Key IX_AccountingCustomerAddressType_TypeName: TypeNameTypeNamevarchar(15)15
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_AccountingCustomerAddressType: AccountingCustomerAddressTypeIdPK_AccountingCustomerAddressTypeAccountingCustomerAddressTypeId
Yes
Cluster Key IX_AccountingCustomerAddressType_TypeName: TypeNameIX_AccountingCustomerAddressType_TypeNameTypeName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountingCustomerAddressType]
(
[AccountingCustomerAddressTypeId] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerAddressType] ADD CONSTRAINT [PK_AccountingCustomerAddressType] PRIMARY KEY NONCLUSTERED  ([AccountingCustomerAddressTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerAddressType] ADD CONSTRAINT [IX_AccountingCustomerAddressType_TypeName] UNIQUE CLUSTERED  ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountingCustomerAddressType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountingCustomerAddressType] TO [MssExec]
GO
Uses
Used By