Tables [cohesion].[cc_module_host]
Properties
PropertyValue
Row Count575
Created11:18:10 AM Friday, April 20, 2007
Last Modified11:18:10 AM Friday, April 20, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__cc_module_host__52593CB8: module_id\host_idForeign Keys FK__cc_module__modul__534D60F1: [cohesion].[cc_module].module_idmodule_idint4
No
Cluster Primary Key PK__cc_module_host__52593CB8: module_id\host_idForeign Keys FK__cc_module__host___5441852A: [cohesion].[cc_host].host_idIndexes XIE1cc_module_host: host_idhost_idint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__cc_module_host__52593CB8: module_id\host_idPK__cc_module_host__52593CB8module_id, host_id
Yes
XIE1cc_module_hosthost_id
Foreign Keys Foreign Keys
NameColumns
FK__cc_module__host___5441852Ahost_id->[cohesion].[cc_host].[host_id]
FK__cc_module__modul__534D60F1module_id->[cohesion].[cc_module].[module_id]
SQL Script
CREATE TABLE [cohesion].[cc_module_host]
(
[module_id] [int] NOT NULL,
[host_id] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [PK__cc_module_host__52593CB8] PRIMARY KEY CLUSTERED ([module_id], [host_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [XIE1cc_module_host] ON [cohesion].[cc_module_host] ([host_id]) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [FK__cc_module__host___5441852A] FOREIGN KEY ([host_id]) REFERENCES [cohesion].[cc_host] ([host_id])
GO
ALTER TABLE [cohesion].[cc_module_host] ADD CONSTRAINT [FK__cc_module__modul__534D60F1] FOREIGN KEY ([module_id]) REFERENCES [cohesion].[cc_module] ([module_id])
GO
Uses