Tables [dbo].[XLedgerTransactionHoldStatus]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
Created7:49:20 PM Saturday, February 7, 2026
Last Modified7:49:23 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_XLedgerTransactionHoldStatus: XLedgerTransactionHoldStatusIdXLedgerTransactionHoldStatusIdint4
No
1 - 1
Descriptionvarchar(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_XLedgerTransactionHoldStatus: XLedgerTransactionHoldStatusIdPK_XLedgerTransactionHoldStatusXLedgerTransactionHoldStatusId
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerTransactionHoldStatus]
(
[XLedgerTransactionHoldStatusId] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerTransactionHoldStatus] ADD CONSTRAINT [PK_XLedgerTransactionHoldStatus] PRIMARY KEY CLUSTERED  ([XLedgerTransactionHoldStatusId]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerTransactionHoldStatus] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerTransactionHoldStatus] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerTransactionHoldStatus] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerTransactionHoldStatus] TO [MssExec]
GO
Uses
Used By