February 13, 2013 at 3:54 pm
I have trigger on a table and it failed when i insert on a table with below errro message and its SQL Server 2005 version.
Msg 8525, Level 16, State 1, Line 1
Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction.
Thanks
February 14, 2013 at 5:46 am
That's not much to go on. Do you have any details of it? DDL? Insert statement?
February 14, 2013 at 6:30 am
uggh; looks like you are doing something in a trigger(inserting/updating into another server?) that should be done in a service broker, or a schedule job that would do the same step periodically, or maybe via a stored procedure that is prepared to handle errors on the event.
the error in the trigger would have caused the trigger to rollback with the error, i think, so the data that was supposed to be inserted is gone.
some things should not be done in a trigger.
Lowell
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply