up vote 0 down vote favorite
share [g+] share [fb]

Several days ago i setup some replication for our SQL Server 2005 database, the type of replication was a transactional with updateable subscription.

The replication are working fine, lately i test the upgradeable subscription feature by modifying 1 data on subscriber server but then the error was raise and data are not committed.

The error was:

Error Source: .Net SQLClient Data Provider.
Error Message: The RPC security information for Publisher is missing or invalid. Use sp_link_publication to specify it.
Updateable subscription: Rolling back transaction.
....  

I have check both publisher and subscriber username and password, and since i use mixed authentication and i have set the same username & password for publisher and subscriber it can't be wrong.

My replication schema was like this:
Replication schema

(the left image which use 3 server), lets say A was publisher and B/C was subscriber

Anyone have a solution for this problem? I prefer a more GUI solution rather than T-SQL if possible.

link|improve this question

73% accept rate
feedback

2 Answers

Sorry no GUI solution, I would run

sp_link_publication.

This link

http://msdn.microsoft.com/en-us/library/ms174991.aspx

Explains the parameters

Hope that helps

link|improve this answer
any harm when i misuse this stored procedure? – Dels Apr 30 '09 at 1:59
It's already broken right - Make sure your parameters are correct – UndertheFold May 1 '09 at 4:44
feedback
up vote 0 down vote accepted

The problem solved, the issues was in fact deals with MS DTC, i've modified MSDTC setting and recreate the replication (both publisher and subscriber) and now it's work

PS:
- MSDTC can be accessed on Administrative Tools -> Component Services -> Right click on Computer and go to MSDTC tab
- Right there i check all items and press Apply then recreate the replication

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.