Tables [dbo].[XLedgerOnDemandSyncType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created3:08:32 PM Tuesday, June 24, 2025
Last Modified3:08:32 PM Tuesday, June 24, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_XLedgerOnDemandSyncType: XLedgerOnDemandSyncTypeIdXLedgerOnDemandSyncTypeIdint4
No
1 - 1
Indexes IX_XLedgerOnDemandSyncType_Description: DescriptionDescriptionvarchar(16)16
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_XLedgerOnDemandSyncType: XLedgerOnDemandSyncTypeIdPK_XLedgerOnDemandSyncTypeXLedgerOnDemandSyncTypeId
Yes
IX_XLedgerOnDemandSyncType_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerOnDemandSyncType]
(
[XLedgerOnDemandSyncTypeId] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerOnDemandSyncType] ADD CONSTRAINT [PK_XLedgerOnDemandSyncType] PRIMARY KEY CLUSTERED  ([XLedgerOnDemandSyncTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerOnDemandSyncType] ADD CONSTRAINT [IX_XLedgerOnDemandSyncType_Description] UNIQUE NONCLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerOnDemandSyncType] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerOnDemandSyncType] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerOnDemandSyncType] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerOnDemandSyncType] TO [MssExec]
GO
Uses
Used By