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