I have a table (Lets call it Table1) in which about 80% of the records are created from a storage table (by rolling/grouping up records), and there is no direct relationships to it since the storage table comes from a read only warehouse and its ID's can change if the readonly warehouse is rebuild from the datasource. In addition, the users can add records to table1 that are not in the warehouse.
Now I have another table (lets call it table2) that does have a relationship to table 1, but also other tables.
My problem is this... when a record is added to table 1, I need to add records to table 2 based on some fields criteria from table 1.
I was thinking of using a trigger for this, since there are 2 ways of adding data to table 1, (via the following transaction and per record basis.
FYI
PricingDrugCurrentTherapyDosing is the storage table -
PricingDrugGroup is 'mostly created by records in PricingDrugCurrentTherapyDosing table (Table1)
I figured I can use a trigger for this since I can keep all the logic for inserting into table 2 in one place.
Unless there is a way I can insert a call to a stored proc in the above transaction that will get called on a per record insert??
Now I have another table (lets call it table2) that does have a relationship to table 1, but also other tables.
My problem is this... when a record is added to table 1, I need to add records to table 2 based on some fields criteria from table 1.
I was thinking of using a trigger for this, since there are 2 ways of adding data to table 1, (via the following transaction and per record basis.
FYI
PricingDrugCurrentTherapyDosing is the storage table -
PricingDrugGroup is 'mostly created by records in PricingDrugCurrentTherapyDosing table (Table1)
Code:
--Deletes records FROM dbo.PricingDrugGroup That are NOT IN the
--PricingDrugCurrentTherapyDosing table at the GeographyID,PricingDrugID,BrandGeneric Grouping Level
DELETE From dbo.PricingDrugGroup
where Exists ( SELECT dbo.PricingDrugGroup.GeographyID,
dbo.PricingDrugGroup.PricingDrugID,
dbo.PricingDrugGroup.BrandGeneric,
1 AS PricingDrugGroupTypeID
FROM dbo.PricingDrugGroup
INNER JOIN dbo.PricingDrug ON dbo.PricingDrugGroup.PricingDrugID = dbo.PricingDrug.PricingDrugID
WHERE dbo.PricingDrug.VersionID = @VersionID
AND dbo.PricingDrugGroup.PricingDrugGroupTypeID = 1
EXCEPT
SELECT dbo.Geography.GeographyID,
dbo.PricingDrugCurrentTherapyDosing.PricingDrugID,
dbo.PricingDrugCurrentTherapyDosing.BrandGeneric,
1 AS PricingDrugGroupTypeID
FROM dbo.Geography
INNER JOIN ( dbo.PricingDrug
INNER JOIN dbo.PricingDrugCurrentTherapyDosing ON dbo.PricingDrug.PricingDrugID = dbo.PricingDrugCurrentTherapyDosing.PricingDrugID
) ON dbo.Geography.GeographyName = dbo.PricingDrugCurrentTherapyDosing.Country
WHERE ( (( dbo.PricingDrug.VersionID ) = @VersionID) )
GROUP BY dbo.Geography.GeographyID,
dbo.PricingDrugCurrentTherapyDosing.PricingDrugID,
dbo.PricingDrugCurrentTherapyDosing.BrandGeneric )
--This adds records into PricingDrugGroup that does not have matching records in
--PricingDrugCurrentTherapyDosing at the GeographyID,PricingDrugID,BrandGeneric Grouping Level
INSERT INTO dbo.PricingDrugGroup
(
GeographyID,
PricingDrugID,
BrandGeneric,
PricingDrugGroupTypeID
)
SELECT dbo.Geography.GeographyID,
dbo.PricingDrugCurrentTherapyDosing.PricingDrugID,
dbo.PricingDrugCurrentTherapyDosing.BrandGeneric,
1 AS PricingDrugGroupTypeID
FROM dbo.Geography
INNER JOIN ( dbo.PricingDrug
INNER JOIN dbo.PricingDrugCurrentTherapyDosing ON dbo.PricingDrug.PricingDrugID = dbo.PricingDrugCurrentTherapyDosing.PricingDrugID
) ON dbo.Geography.GeographyName = dbo.PricingDrugCurrentTherapyDosing.Country
WHERE ( (( dbo.PricingDrug.VersionID ) = @VersionID) )
GROUP BY dbo.Geography.GeographyID,
dbo.PricingDrugCurrentTherapyDosing.PricingDrugID,
dbo.PricingDrugCurrentTherapyDosing.BrandGeneric
EXCEPT
SELECT dbo.PricingDrugGroup.GeographyID,
dbo.PricingDrugGroup.PricingDrugID,
dbo.PricingDrugGroup.BrandGeneric,
1 AS PricingDrugGroupTypeID
FROM dbo.PricingDrugGroup
INNER JOIN dbo.PricingDrug ON dbo.PricingDrugGroup.PricingDrugID = dbo.PricingDrug.PricingDrugID
WHERE dbo.PricingDrug.VersionID = @VersionID
AND dbo.PricingDrugGroup.PricingDrugGroupTypeID = 1
I figured I can use a trigger for this since I can keep all the logic for inserting into table 2 in one place.
Unless there is a way I can insert a call to a stored proc in the above transaction that will get called on a per record insert??