Tagged Questions

3
votes
1answer
71 views

Future of “Logical Records” in SQL Merge Replication

I am building a new application which will be using SQL Merge Replication over very poor networks. It appears that the "Logical Records" feature would help significantly in coping with these network ...
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
271 views

Replication - User defined table type not propogating to subscriber

I created a User defined table type named tvp_Shipment with two columns (id and name) . generated a snapshot and the User defined table type was properly propogated to all the subscribers. I was ...
1
vote
1answer
45 views

Manual synchronization SQL Server enigma

I've installed two SQL Server 2008 in two sites linked by internet connection and I've installed a merge replication between them, but one of the sites got a long disconnection time and the customer ...
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
1answer
130 views

SQL Replication from Win CE device to SQL Server 2008 R2

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
1answer
75 views

Are good security practices and auto identity range mgmt mutually exclusive?

I'm trying to use Automatic Identity Range Management. However, the only way to ensure my users can INSERT records in tables with identity columns is to make them db_owner. Am I missing something? ...
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 ...
1
vote
1answer
107 views

What to consider if using triggers on tables in a sql-server merge replication

i am driving since some years a sql-server2000 merge-replication over three locations. Triggers do a lot of work in this database. i got no troubles. Now migrating these database to a brand new ...
1
vote
1answer
66 views

Long Running Merge

When I'm doing synchronization between database in different system, I'm getting the "long running merge" warning in the replication monitor. As my database consists of lakhs of records, so it is ...
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
0answers
21 views

Do Check constraints get replicated (in merge replication)

Title says it all; I just wanted to know if a check constrainst get replicated under merge replication.
0
votes
4answers
206 views

GUID of 00000000-0000-0000-0000-000000000000 causing merge index violation

Our developer has a linq-2-sql project that talks to my database. The database is involved in merge replication. It has been in use for some time and was working fine. A recent table was added to ...
0
votes
1answer
38 views

Adding/modifying unique constraints on a replicated table

I have an existing table in a replicated environment, I know there are restriction on schema changes that can be done on this table. Can I do the following. Add a unique constrainst on publisher and ...
0
votes
0answers
261 views

Merge Replication Error: Primary Key Violation

I have a database table, EquipmentLocations ( EquipmentLocationID int identity(1,1) not null, EquipmentID int not null, LocationID int not null, rowguid uniqueidentifier not null ) ...
0
votes
0answers
76 views

Rename Subscription database in merge replication

I want to rename a subscription database in merge replication. All the subscriptions are synchronized properly. IS it possible to rename one of the subscription database?
0
votes
0answers
378 views

Allow non-db_owner INSERT permissions in merge replication with auto identity range mgmt

I have users with INSERT permissions on a table. They can insert records on the publisher until the table's primary range runs out. Then they start getting this error every time they try to do an ...
0
votes
1answer
221 views

Database Merge Replication on two static IP servers [closed]

I'm working on two separate servers in two different locations connected together via internet, and both of them have a static IP, and I need to create a merge replication between both of them such ...
0
votes
1answer
105 views

Move schema changes and data from Publisher to subscriber in MergeReplication

I have a corporate server and around 50 remote clients. Images are added to Remoteclients and these Images are merge replicated to CorporateServer. Now initially all these images were on BLOB. We have ...
0
votes
1answer
517 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
117 views

Insert into a Replicated SQL Server table with 7 rows is taking nearly 1 minute - why is this?

I have a table with four columns, that is part of a publication that I'm replicating with in SQL Server 2008 R2. The table has only 7 rows. When I try to insert into the table with a simple insert ...
0
votes
3answers
450 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
0answers
94 views

How to run the snapshot for the newly added article alone?

I'm doing merge replication in sql server 2008 to synchronize the database between two systems. I added only tables to replicate initially. Successfully it is synchronizing. Now the problem is ...
0
votes
2answers
1k views

How to Disable Publishing And Distribution?

I'm getting the following error while disabling publishing and distribution. Plz, tell me how to do disable publishing and distribution? SQL Server could not disable publishing and distribution ...
0
votes
1answer
147 views

Is there an easy way to verify replication articles are correct?

On a Publication (secondarily, a Subscription), is there a script or command I can run that verifies that the articles currently in place match what is expected and/or correct? If changes were ...