Tables [dbo].[AccountingAccountType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)5
Created7:48:08 PM Saturday, February 7, 2026
Last Modified7:48:10 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_AccountingAccountType: AccountingAccountTypeIdAccountingAccountTypeIdint4
No
1 - 1
Indexes IX_AccountingAccountType_Description: DescriptionDescriptionnvarchar(16)32
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AccountingAccountType: AccountingAccountTypeIdPK_AccountingAccountTypeAccountingAccountTypeId
Yes
IX_AccountingAccountType_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AccountingAccountType]
(
[AccountingAccountTypeId] [int] NOT NULL IDENTITY(1, 1),
[Description] [nvarchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingAccountType] ADD CONSTRAINT [PK_AccountingAccountType] PRIMARY KEY CLUSTERED  ([AccountingAccountTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingAccountType] ADD CONSTRAINT [IX_AccountingAccountType_Description] UNIQUE NONCLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AccountingAccountType] TO [MssExec]
GRANT INSERT ON  [dbo].[AccountingAccountType] TO [MssExec]
GRANT DELETE ON  [dbo].[AccountingAccountType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AccountingAccountType] TO [MssExec]
GO
Uses
Used By