Tables [dbo].[ToolInstanceLog]
Properties
PropertyValue
Row Count306
Created12:44:45 PM Thursday, October 04, 2007
Last Modified12:44:45 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key pk_toolinstancelog: toolInstanceLogIDtoolInstanceLogIDint4
No
1 - 1
groupIDint4
Yes
toolIDint4
Yes
startEpochdecimal(18,0)9
Yes
endEpochdecimal(18,0)9
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key pk_toolinstancelog: toolInstanceLogIDpk_toolinstancelogtoolInstanceLogID
Yes
SQL Script
CREATE TABLE [dbo].[ToolInstanceLog]
(
[toolInstanceLogID] [int] NOT NULL IDENTITY(1, 1),
[groupID] [int] NULL,
[toolID] [int] NULL,
[startEpoch] [decimal] (18, 0) NULL,
[endEpoch] [decimal] (18, 0) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ToolInstanceLog] ADD CONSTRAINT [pk_toolinstancelog] PRIMARY KEY CLUSTERED ([toolInstanceLogID]) ON [PRIMARY]
GO
Uses