Tagged Questions
4
votes
2answers
2k views
Changing column constraint null/not null = rowguid replication error
I have a database running under Sql server 2005 with merge replication. I want to change some of the FK columns to be 'not null' as they should always have a value. SQL server won't let me do that ...
2
votes
1answer
36 views
Help determining proper Identity Range sizes
I have a Merge Replication with ~200 subscribers. I am trying to determine what would be appropriate Identity Range Sizes on some of the tables. You see I inherited a DB structure that was not ...
1
vote
1answer
315 views
SQL Server Express 2005 Merge Replication using RMO causes Null Reference exception
I'm trying to use RMO to programmatically perform merge synchronization. I've basically copied the SQL Server example code, as follows:
// Create a connection to the Subscriber.
ServerConnection conn ...
1
vote
1answer
414 views
How to programmatically start SQL Server 2005 merge replication
We currently have merge replication set up to merge certain tables between two databases. I need to programmatically start one of the publications to make sure data has been synchronized prior to ...
0
votes
2answers
194 views
Adding FK Index to existing table in Merge Replication Topology
I have a table that has grown quite large that we are replicating to about 120 subscribers. A FK on that table does not have an index and when I ran an Execution Plan on a query that was causing ...
0
votes
1answer
189 views
SQL Server 2005 Merge Replication: Under what circumstances would the base snapshot expire?
Obviously changing schema, adding / removing published articles etc expires the snapshot, but is there anything else that would cause the publication to expire?
We're seeing a snapshot expiring ...
0
votes
1answer
255 views
Will this force a reinitialize in Merge Replication Topology?
I need to add a couple of columns to a table that is a part of a replication set. It is not a constraint coulumn or a part of any article filters and it allows NULL. I have a pretty good idea that I ...
0
votes
1answer
268 views
Replication Custom resolver changes empty strings to NULLs
We have an C# application which posts to a database which is replicated to another database (using merge-replication) and has one custom resolver which is a stored procedure.
This was working fine ...