Tables [dbo].[XLedgerJournalEntryBatch]
Properties
PropertyValue
Row Count (~)0
Created10:13:22 PM Sunday, March 30, 2025
Last Modified10:13:22 PM Sunday, March 30, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_XLedgerJournalEntryBatch: XLedgerJournalEntryBatchIdXLedgerJournalEntryBatchIdint4
No
1 - 1
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_XLedgerJournalEntryBatch: XLedgerJournalEntryBatchIdPK_XLedgerJournalEntryBatchXLedgerJournalEntryBatchId
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerJournalEntryBatch]
(
[XLedgerJournalEntryBatchId] [int] NOT NULL IDENTITY(1, 1)
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerJournalEntryBatch] ADD CONSTRAINT [PK_XLedgerJournalEntryBatch] PRIMARY KEY CLUSTERED  ([XLedgerJournalEntryBatchId]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerJournalEntryBatch] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerJournalEntryBatch] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerJournalEntryBatch] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerJournalEntryBatch] TO [MssExec]
GO
Uses
Used By