To fix potential trigger issues, what are some of the alternatives you can use to get the same response functionality for an event triggered by an INSERT action?
I have a database that must have additional values added to insert. INSERT is controlled by compiled code and cannot be changed.
EXAMPLE: a program inserts a string, and from this string I need to specify an integer in a new field that points to a lookup table.
If there is an alternative to a trigger, please let me know some of the pros and cons of any alternative. The main reason for this is that triggers are not allowed in our database standards.
SQL Server 2008 Enterprise
source
share