Tables [dbo].[remed_prof_detect_prof_matrix]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:08:04 AM Wednesday, March 07, 2007
Last Modified11:09:58 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKremed_prof_detect_prof_matrix: remed_detect_profile_rec_idremed_detect_profile_rec_idbinary(16)16
No
Foreign Keys $remed_r00001c0c00000000: [dbo].[detection_profile].detect_profile_iddetect_profile_idbinary(16)16
No
creation_usernvarchar(64)128
No
creation_dateint4
No
Foreign Keys $remed_r00001c0200000000: [dbo].[remediation_profile].remed_profile_idremed_profile_idbinary(16)16
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKremed_prof_detect_prof_matrix: remed_detect_profile_rec_idXPKremed_prof_detect_prof_matrixremed_detect_profile_rec_id
Yes
Foreign Keys Foreign Keys
NameColumns
$remed_r00001c0200000000remed_profile_id->[dbo].[remediation_profile].[remed_profile_id]
$remed_r00001c0c00000000detect_profile_id->[dbo].[detection_profile].[inventory_profile_id]
SQL Script
CREATE TABLE [dbo].[remed_prof_detect_prof_matrix]
(
[remed_detect_profile_rec_id] [binary] (16) NOT NULL,
[detect_profile_id] [binary] (16) NOT NULL,
[creation_user] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[creation_date] [int] NOT NULL,
[remed_profile_id] [binary] (16) NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[remed_prof_detect_prof_matrix] ADD CONSTRAINT [XPKremed_prof_detect_prof_matrix] PRIMARY KEY CLUSTERED ([remed_detect_profile_rec_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[remed_prof_detect_prof_matrix] ADD CONSTRAINT [$remed_r00001c0200000000] FOREIGN KEY ([remed_profile_id]) REFERENCES [dbo].[remediation_profile] ([remed_profile_id])
GO
ALTER TABLE [dbo].[remed_prof_detect_prof_matrix] ADD CONSTRAINT [$remed_r00001c0c00000000] FOREIGN KEY ([detect_profile_id]) REFERENCES [dbo].[detection_profile] ([inventory_profile_id])
GO
Uses