
[dbo].[remed_prof_detect_prof_matrix]
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