Tables [dbo].[CustomCollector]
Properties
PropertyValue
Row Count0
Created11:42:02 AM Friday, March 26, 2010
Last Modified11:42:02 AM Friday, March 26, 2010
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK__CustomCollector__398D8EEE: ObjectIDObjectIDint4
No
((0))
IsAvailabletinyint1
Yes
IsCollectorSettinyint1
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__CustomCollector__398D8EEE: ObjectIDPK__CustomCollector__398D8EEEObjectID
Yes
SQL Script
CREATE TABLE [dbo].[CustomCollector]
(
[ObjectID] [int] NOT NULL CONSTRAINT [DF__CustomCol__Objec__38996AB5] DEFAULT ((0)),
[IsAvailable] [tinyint] NULL,
[IsCollectorSet] [tinyint] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CustomCollector] ADD CONSTRAINT [PK__CustomCollector__398D8EEE] PRIMARY KEY CLUSTERED ([ObjectID]) ON [PRIMARY]
GO
Uses