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