Tagged Questions

3
votes
1answer
155 views

Why should someone use Identity Range Management with SQL Server

When I began to work on replication a few years ago, I was convinced that Identity Range Management was only made available in recent SQL Servers for legacy purposes as, prior to SQL Server 2000, the ...
2
votes
2answers
59 views

SQL Server Performance Suggestion

I have been creating database tables using only a primary key of the datatype int and I have always had great performance but need to setup merge replication with updatable subscribers. The tables ...
2
votes
1answer
37 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
0answers
45 views

SQL Replication, CE device

I have a Windows CE device that I'd like to replicate data to a SQL Server 2008 R2 database. I understand the basics of replication and I need to use MSDN's "Two-Server Topology". Where there is an ...
1
vote
3answers
251 views

SQL Server 2005 Replication Integrity Violations SQL Server, Error number: 28549

I am hoping someone can help me with a really bizarre problem. When users sync their device they are getting this error: The row operation cannot be reapplied due to an integrity violation. ...
1
vote
2answers
308 views

SQL2008 merge replication fails to update depdendent items when table is added

Setup: an existing SQL2008 merge replication scenario. A large server database, including views and stored procs, being replicated to client machines. What I'm doing: adding a new table to the ...
0
votes
0answers
49 views

Join filter between more than two tables

So, I have a scenario where I have an article that I want to be filtered based on two other articles in the publication. If I were to write this as T-SQL, it'd be: select t3.* from t3 inner join t2 ...
0
votes
1answer
51 views

Are there advantages to only use stored procedures to access a database with merge replication?

I have a project where SPs are the only way that the application uses to access or modify the Sql Server 2008 DB. I have developers asking to abandon the SP only approach and let them use Linq to Sql ...
0
votes
1answer
57 views

central subscriber replication in Sql Server 2008 R2 [closed]

We have regional office and some data in this office.We want to transfer data from each regional office everyday to central office .For this reason I need central subscriber topology.I implement ...
0
votes
1answer
101 views

RFI: Moving from SQL Replication to MS Sync

We are looking at replacing SQL Replication with another technology, possible MS SYNC. We are synchronizing the data and schema for a large SAAS application between multiple data centers and require ...
0
votes
1answer
510 views

replication between two tables with different names and which have different column names. Is it possible to create such replication

I have a requirement where i have create replication between two tables with different names and which have different column names. Is it possible to create such replication. server A ...
0
votes
1answer
232 views

How to replicate two tables with different structures but the same fields?

I have two SQL server databases in different locations.I want to do something like replication. this is my scenario: In the first data base I have a table with following structure: tbl_worker _Name ...
0
votes
1answer
61 views

Updating filtered replicated rows on subscriber fails

I have a merge replication scenario with 1 distributor/publisher and many subscribers. There are only a few articles which are unfiltered everything else is filtered by HOST_NAME() and thus creating ...
0
votes
1answer
198 views

Merge Replication: Are multiple publications better than one big one?

We have merge replication set up in SQL Server 2000. One of our publications has 65 articles in it. This works fine but it is a hassle to modify anything (beyond adding a column via ...
0
votes
0answers
191 views

Replication - (0x80004005) The Merge Agent received the following error [404 :Not Found]

I've setup partitioned web sync merge replication which seems to have been working fairly well, until today when this error message started happening: ...
0
votes
1answer
112 views

SqlCeReplication: using ReinitializeSubscription before each Synchronize?

I'm working on a bug in a legacy Windows Mobile 5 app, which uses SQL CE Replication to sync a SQL CE database with a SQL Server 2005 or 2008 database (using Merge replication). There is some ...
0
votes
1answer
236 views

Web Sync Replication: (0x80004005): The schema script 'xxx' could not be propagated to the subscriber

Ive been having great trouble setting up replication (web sync via HTTPS). If I only publish the tables, they replicate fine with the data. If I add in views & sprocs then it failes with the ...
0
votes
3answers
447 views

SQL Server 2008 Replication to SQL Express 2005 via web sync

I have a SQL 2008 R2 server. I've created a publication using the wizard which seemed to go ok. There is a 'distribution' database in the 'system databases' section that has not a lot in it. (Not sure ...
0
votes
1answer
414 views

How to: Configure IIS7 for Web Synchronization

I have followed the instructions here. To cut a long story short, I just cannot connect to: https://machine/site/virtual directory/replisapi.dll?diag I get: HTTP Error 500.0 - Internal Server ...
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
258 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
110 views

SQL Trigger that runs ONLY at Publisher

I have an in house app that has both a Web Interface and a Desktop Interface(is an OCA using Merge Replication). We are still using SQL 2005 and have many 'Archive' tables set up. These are filled ...
0
votes
0answers
744 views

SQL Server 2008 Merge Replication over Internet

We have decided to put our servers in data centers on east and west coast of US, to keep high level redundancy. We like to replicate our SQL Server 2008 databases using merge replication, but going ...