|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Saturday, March 28, 2009 3:52 AM
Points: 8,
Visits: 20
|
|
I have created Transaction-updatable replication between two databases in sqlserver 2005. At the subscriber end if i make any changes i get the following error while saving changes made to the table.
No row was updated The data in row 1 was not committed. Error Source: .Net SqlClient Data Provider. Error Message: The RPC security information for the Publisher is missing or invalid. Use sp_link_publication to specify it. Updateable Subscriptions: Rolling back transaction. The transaction ended in the trigger. The batch has been aborted.
Please provide help.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, February 02, 2009 7:08 AM
Points: 2,
Visits: 6
|
|
| Exactly the same problme here. If I find a fix I'll let you know.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Thursday, June 06, 2013 9:12 AM
Points: 6,260,
Visits: 1,980
|
|
n_padma (11/5/2008) I have created Transaction-updatable replication between two databases in sqlserver 2005. At the subscriber end if i make any changes i get the following error while saving changes made to the table.
No row was updated The data in row 1 was not committed. Error Source: .Net SqlClient Data Provider. Error Message: The RPC security information for the Publisher is missing or invalid. Use sp_link_publication to specify it. Updateable Subscriptions: Rolling back transaction. The transaction ended in the trigger. The batch has been aborted.
Please provide help.
Have you ran sp_link_publication in the subscriber database?
sp_link_publication @publisher = '{publisher instance name}' , @publisher_db = '{published database name}' , @publication = '{publication name}' , @security_mode = '1' , @login = '{sql server login account to connect publisher}' , @password = '{password}' , @distributor = '{distributor instance name}'
* Noel
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, February 02, 2009 7:08 AM
Points: 2,
Visits: 6
|
|
Hi,
I did but the syntax I deduced from the ms web site was a bit different.
I’ll try your syntax on Monday.
Thanks a lot and have a great weekend.
Paul
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Thursday, June 06, 2013 9:12 AM
Points: 6,260,
Visits: 1,980
|
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Thursday, June 13, 2013 8:57 PM
Points: 66,
Visits: 209
|
|
The sp_link_publication did not work.
I have changed the options in security configuration of MSDTC section of the component services to 'allow remote administration' and 'allow inbound' and 'allow outbound' under transaction manager communication.
This setup is on a two node cluster. Do I have to restart the servers after making this change or I should be restarting the MSDTC resource alone?
|
|
|
|