Tables [dbo].[GLAccounts4]
PropertyValue
Row Count (~)0
Created12:57:21 AM Thursday, March 21, 2019
Last Modified1:15:30 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_GLAccounts4: AccountIDAccountIDint4
False
timestamptimestamp8
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_GLAccounts4: AccountIDPK_GLAccounts4AccountID
True
80
CREATE TABLE [dbo].[GLAccounts4]
(
[AccountID] [int] NOT NULL,
[timestamp] [timestamp] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GLAccounts4] ADD CONSTRAINT [PK_GLAccounts4] PRIMARY KEY CLUSTERED  ([AccountID]) ON [PRIMARY]
GO