Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2003-07-02 : 07:19:50
|
| Hems writes "Dear All,Please help me in resolving this problem.We have a One Cluster SQL2000 Server with SP3 & OS:W2K with SP3 and one remote server non cluster SQL2000 Server with SP3 & OS:W2K with SP3.I have below procedure in my cluster SQL2000 Server Server Name: cmdatUse PubsGoCREATE trigger test1 on testfor insert,updateasdeclare @id1 as intselect @id1=id1 from insertedinsert into [180.66.1.1].pubs.dbo.test(id1)values(@id1)Goinsert into test(id1) value(1)GoAfter Executing this,We get below error message.Error Message;The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction.[OLE/DB provider returned message: New transaction cannot enlist in the specified transaction coordinator.]Note:180.66.1.1 is a IP of Remote SQL2000 Serverand cmdat is the Name of Cluster SQL200 Server.Please help me on above problem" |
|
|
|
|
|