|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 5:03 PM
Points: 55,
Visits: 571
|
|
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
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Today @ 1:55 PM
Points: 1,884,
Visits: 562
|
|
| That's not much to go on. Do you have any details of it? DDL? Insert statement?
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 6:41 PM
Points: 11,648,
Visits: 27,760
|
|
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
--There is no spoon, and there's no default ORDER BY in sql server either. Actually, Common Sense is so rare, it should be considered a Superpower. --my son
|
|
|
|