RollingMoose
Programmer
Here's what we're trying to accomplish.
We have an insert trigger that fires when new data enters a table from another server. The trigger creates a join to another database to extract a piece of data that updates a field in our table. However, if that join can't be created an error occurs and the transaction is rolled back (sometimes that database is taken offline).
What we'd like to happen is if an error occurs, allow the new data to populate our table and leave the field we're trying to update blank.
Hope that makes sense...any suggestions or advice is appreciated.
We have an insert trigger that fires when new data enters a table from another server. The trigger creates a join to another database to extract a piece of data that updates a field in our table. However, if that join can't be created an error occurs and the transaction is rolled back (sometimes that database is taken offline).
What we'd like to happen is if an error occurs, allow the new data to populate our table and leave the field we're trying to update blank.
Hope that makes sense...any suggestions or advice is appreciated.