Trigger issue

  • 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

  • That's not much to go on. Do you have any details of it? DDL? Insert statement?

  • 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


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply