Tables [dbo].[AccountingCustomerCreditLimitType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created7:48:54 PM Saturday, February 7, 2026
Last Modified7:48:55 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_AccountingCustomerCreditLimitType: AccountingCustomerCreditLimitTypeIdAccountingCustomerCreditLimitTypeIdint4
No
1 - 1
Cluster Key IX_AccountingCustomerCreditLimitType_TypeName: TypeNameTypeNamevarchar(15)15
No
Indexes IX_AccountingCustomerCreditLimitType_GPCreditLimitTypeCode: GPCreditLimitTypeCodeGPCreditLimitTypeCodesmallint2
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_AccountingCustomerCreditLimitType: AccountingCustomerCreditLimitTypeIdPK_AccountingCustomerCreditLimitTypeAccountingCustomerCreditLimitTypeId
Yes
IX_AccountingCustomerCreditLimitType_GPCreditLimitTypeCodeGPCreditLimitTypeCode
Yes
Cluster Key IX_AccountingCustomerCreditLimitType_TypeName: TypeNameIX_AccountingCustomerCreditLimitType_TypeNameTypeName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountingCustomerCreditLimitType]
(
[AccountingCustomerCreditLimitTypeId] [int] NOT NULL IDENTITY(1, 1),
[TypeName] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[GPCreditLimitTypeCode] [smallint] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerCreditLimitType] ADD CONSTRAINT [PK_AccountingCustomerCreditLimitType] PRIMARY KEY NONCLUSTERED  ([AccountingCustomerCreditLimitTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerCreditLimitType] ADD CONSTRAINT [IX_AccountingCustomerCreditLimitType_GPCreditLimitTypeCode] UNIQUE NONCLUSTERED  ([GPCreditLimitTypeCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomerCreditLimitType] ADD CONSTRAINT [IX_AccountingCustomerCreditLimitType_TypeName] UNIQUE CLUSTERED  ([TypeName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountingCustomerCreditLimitType] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountingCustomerCreditLimitType] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountingCustomerCreditLimitType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountingCustomerCreditLimitType] TO [MssExec]
GO
Uses
Used By