I have two tables Catalog and CatalogIndex
catalog has the following columns
DN
PID
PURL
Desc
where the two columns DN, PID are part of the composite primary key for this table.
CatalogIndex has the following columns
PID
PItem
PVal
PID and PItem are part of the composite primary key for CatalogIndex table.
I want to add a a foriegn key to CatalogIndex on PID column that refernces PID in Catalog table.
I am using SQL Server 2008
Thank you