We have an Access Application that was previously upsized to some previous version of SQL Server (probably 2005 or 2008). I wasn't part of the company when the database was upsized, and it has a bunch of triggers for enforcing the foreign key constraints. I'm assuming this is a design choice because the flexibility of triggers allowed for better control over the validation logic for the constraint check?
Here's what one of those triggers looks like:
ALTER TRIGGER [dbo].[T_tblTimeCard_ITrig] ON [dbo].[tblTimeCard] FOR INSERT AS
SET NOCOUNT ON
/* * PREVENT INSERTS IF NO MATCHING KEY IN 'tblDevelopers' */
IF (SELECT COUNT(*) FROM inserted) !=
(SELECT COUNT(*) FROM tblDevelopers, inserted WHERE (tblDevelopers.ID = inserted.DeveloperID))
BEGIN
RAISERROR 44447 'The record can''t be added or changed. Referential integrity rules require a related record in table ''tblDevelopers''.'
ROLLBACK TRANSACTION
END
The problem is we are migrating this database to a SQL Server 2012 cluster, and when trying to execute standard INSERT statements, we are getting error messages like the following:
Incorrect syntax near '44447'.
We have figured out that this is caused by the RAISERROR syntax changing from SQL Server 2008 to 2012. Also, we have to use sp_addmessage to add each custom error message.
However, my question is simply this: looking at the trigger as it's defined above, could we just use foreign key constraints instead and get rid of the triggers altogether? Why are triggers being used in the first place? It seems like a messy design choice (and in this case, a maintenance nightmare!) I don't really like the idea of updating triggers for possibly hundreds of tables every time this changes in the future, but I also don't want to miss some gotcha with this design choice.