Tables [cohesion].[cc_rel_map]
Properties
PropertyValue
Row Count0
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_rel_map__09A971A2: map_id\rel_idForeign Keys FK__cc_rel_ma__map_i__0B91BA14: [cohesion].[cc_map].map_idmap_idint4
No
Cluster Primary Key PK__cc_rel_map__09A971A2: map_id\rel_idForeign Keys FK__cc_rel_ma__rel_i__0A9D95DB: [cohesion].[cc_ci_relation].rel_idrel_idint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__cc_rel_map__09A971A2: map_id\rel_idPK__cc_rel_map__09A971A2map_id, rel_id
Yes
Foreign Keys Foreign Keys
NameColumns
FK__cc_rel_ma__map_i__0B91BA14map_id->[cohesion].[cc_map].[map_id]
FK__cc_rel_ma__rel_i__0A9D95DBrel_id->[cohesion].[cc_ci_relation].[rel_id]
SQL Script
CREATE TABLE [cohesion].[cc_rel_map]
(
[map_id] [int] NOT NULL,
[rel_id] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_rel_map] ADD CONSTRAINT [PK__cc_rel_map__09A971A2] PRIMARY KEY CLUSTERED ([map_id], [rel_id]) ON [PRIMARY]
GO
ALTER TABLE [cohesion].[cc_rel_map] ADD CONSTRAINT [FK__cc_rel_ma__map_i__0B91BA14] FOREIGN KEY ([map_id]) REFERENCES [cohesion].[cc_map] ([map_id])
GO
ALTER TABLE [cohesion].[cc_rel_map] ADD CONSTRAINT [FK__cc_rel_ma__rel_i__0A9D95DB] FOREIGN KEY ([rel_id]) REFERENCES [cohesion].[cc_ci_relation] ([rel_id])
GO
Uses