Tables [dbo].[AccountingVendorAddressType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created7:46:13 PM Saturday, February 7, 2026
Last Modified7:47:20 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_AccountingVendorAddressType: AccountingVendorAddressTypeIdAccountingVendorAddressTypeIdint4
No
1 - 1
Cluster Key IX_AccountingVendorAddressType_TypeName: TypeNameTypeNamevarchar(15)15
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_AccountingVendorAddressType: AccountingVendorAddressTypeIdPK_AccountingVendorAddressTypeAccountingVendorAddressTypeId
Yes
Cluster Key IX_AccountingVendorAddressType_TypeName: TypeNameIX_AccountingVendorAddressType_TypeNameTypeName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountingVendorAddressType]
(
[AccountingVendorAddressTypeId] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingVendorAddressType] ADD CONSTRAINT [PK_AccountingVendorAddressType] PRIMARY KEY NONCLUSTERED  ([AccountingVendorAddressTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingVendorAddressType] ADD CONSTRAINT [IX_AccountingVendorAddressType_TypeName] UNIQUE CLUSTERED  ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountingVendorAddressType] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountingVendorAddressType] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountingVendorAddressType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountingVendorAddressType] TO [MssExec]
GO
Uses
Used By