Tables [dbo].[ScriptExecutionLogJoin]
Properties
PropertyValue
Row Count65
Created12:44:46 PM Thursday, October 04, 2007
Last Modified12:44:46 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key pk_ScriptExecutionLogJoin: scriptInstanceID\eventIDscriptInstanceIDint4
No
Cluster Primary Key pk_ScriptExecutionLogJoin: scriptInstanceID\eventIDeventIDdecimal(28,0)13
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key pk_ScriptExecutionLogJoin: scriptInstanceID\eventIDpk_ScriptExecutionLogJoinscriptInstanceID, eventID
Yes
SQL Script
CREATE TABLE [dbo].[ScriptExecutionLogJoin]
(
[scriptInstanceID] [int] NOT NULL,
[eventID] [decimal] (28, 0) NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ScriptExecutionLogJoin] ADD CONSTRAINT [pk_ScriptExecutionLogJoin] PRIMARY KEY CLUSTERED ([scriptInstanceID], [eventID]) ON [PRIMARY]
GO
Uses