Tables [dbo].[XLedgerSyncEntityType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created8:55:47 AM Thursday, December 5, 2024
Last Modified8:55:50 AM Thursday, December 5, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_XLedgerSyncEntityTypeId: XLedgerSyncEntityTypeIdXLedgerSyncEntityTypeIdint4
No
1 - 1
Cluster Key IX_XLedgerSyncEntityType_Name: NameNamenvarchar(32)64
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_XLedgerSyncEntityTypeId: XLedgerSyncEntityTypeIdPK_XLedgerSyncEntityTypeIdXLedgerSyncEntityTypeId
Yes
Cluster Key IX_XLedgerSyncEntityType_Name: NameIX_XLedgerSyncEntityType_NameName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerSyncEntityType]
(
[XLedgerSyncEntityTypeId] [int] NOT NULL IDENTITY(1, 1),
[Name] [nvarchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerSyncEntityType] ADD CONSTRAINT [PK_XLedgerSyncEntityTypeId] PRIMARY KEY NONCLUSTERED  ([XLedgerSyncEntityTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerSyncEntityType] ADD CONSTRAINT [IX_XLedgerSyncEntityType_Name] UNIQUE CLUSTERED  ([Name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerSyncEntityType] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerSyncEntityType] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerSyncEntityType] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerSyncEntityType] TO [MssExec]
GO
Uses
Used By