0
votes
1answer
79 views

Bulk and batching between SQL Server 2008 and SQL Server 2008 Express without stored procedures

I want to use MS Sync Framework v2.1 to sync from a SQL Server 2008 to a SQL Server 2008 Express client. The server could have up to a few hundred thousand new rows while the client is turned off. ...
0
votes
0answers
123 views

Sync Framework 2.1 BulkInsert requires db_owner for SET IDENTITY_INSERT ON

I am using Sync Framework 2.1 to synchronize an SQL CE database with SQL Server 2008 R2. Everything worked fine during testing but when tried to launch the application into production using the ...
3
votes
4answers
484 views

Synchronisation SQL Server Compact 3.5 in C#

In my project, I want to sync SQL Server Compact 3.5 with MSSQL Server 2008. I passed all steps in Visual Studio 2010 like adding New Item >> Local Database Cache >> Configure Data Synchronization ...
0
votes
1answer
59 views

Is DeprovisionScope necessary before DeprovisionStore?

I would like to Deprovision everything in the database. When I test it, DeprovisionStore method itself clears everything including - tables, triggers, stored procedures and templates. However, in ...
0
votes
1answer
193 views

Too many Insert Conflicts in sync framework when the same data exists on both client and server

I request you to understand the problem we are facing with Sync for which I need your help and guide. What we have: 1) 50 tables to be sync-ed, divided into 6 common scopes and 8 template based ...
1
vote
2answers
621 views

Sync local SQL Express Database over WCF

I know there's a lot of material on this topic, but somehow I really can't find anything not out of date and for my needs. What I need. I have a local SQL Express 2008 R2 Database I need to sync ...
0
votes
1answer
349 views

Sync Framework Select Changes Stored Procedure - Performance/Scalability/Improvement

I am using Microsoft Sync Framework 2.1 to synchronize a high number of concurrent end user with a central database server. Environment: 1500 concurrent clients connecting to 1 central database ...
3
votes
2answers
1k views

Microsoft Sync Framework - Performance and scalability

I am trying to use Microsoft Sync Framework 2.1 on a SQL Server database. There will be a high number of concurrent end users, synchronizing with a central database server. Further specifications ...
1
vote
2answers
617 views

Syncing related tables with sync framework

Current situation: I have a database with following structure: Product Category (contains column product_id) Item (contains column category_id) Rating (contains column item_id) Comments ...
1
vote
1answer
355 views

Sync Framework - Syncing data without schema changes

Is there a way to use Microsoft Sync Framework without implementing the required schema changes ('_tracking tables'). Basically, I am faced with the task of Syncing two SQL Server 2008 databases, one ...
1
vote
1answer
532 views

Upgrade MS Sync Framework 2.0 to 2.1 with SQL Server 2008 change tracking

I'm using Sync Framework 2.0 with SQL Server 2008 and Sql Compact Server 3.5 SP and use the integrated SQL Server change tracking. Now I want to upgrade the Sync Framework to version 2.1 Help says ...
1
vote
1answer
2k views

Sync Framework v.2.1 and Change Tracking on SQL Express for N-Tier with WCF proxy

I have the pleasure of using SyncFx v.2.1 on an application. The client side presently uses SQLCE and the Server side uses Server 2008 r2. I am using a SyncFx proxy and host the server ...
2
votes
1answer
297 views

Can I use the Microsoft Sync Framework to synchronize a local ms access (mdb) database against SQL Server?

I see variations of this question have been asked a couple of times, but none of the answers seemed to be definitive. I'm looking for a yes/no as to whether the sync framework will accept Access ...
0
votes
1answer
111 views

SyncFramwork And SQL Server

I am using SyncFramework I have one table. In that I have to sync some columns up and some columns down and some columns up and down..... How can I do this in a single schema for client and ...
1
vote
1answer
490 views

Synchronizing Relative tables in Sync Framework 2.1

I am trying to synchronize Sql Express 2008 with Sql Compact 3.5 with help of Sync Framework 2.1 I have 2 tables Customers(PK Id , string Name ) Orders (PK Id , int Price , string Name , FK ...
0
votes
1answer
755 views

Synchronization two SQL Server databases without link beetween

I have central SQL Server 2008 Enterprise database and many clients with SQL Server 2008 Express databases. And I have a task for synchronization between central database and client's databases: ...
0
votes
2answers
214 views

Microsoft Sync - Not bringing over Foreign Keys

I am using Microsoft Sync Frameowrk, and it is bringing over my tables, but it is not pulling over the Foreign Keys? I have made sure that the parent (PK Table) is bring brought over first as I would ...
0
votes
2answers
236 views

Sync Framework 2.1 not completing sync

I am using sync framework to sync datat from an Sql Server 2008 R2 database. when I run sync on my machine, from the installed wpf application or from visual studio, everything syncs properly. The ...
3
votes
1answer
1k views

Microsoft Sync Framework 2.1 + Change Tracking in Sql-Server 2008

When I provision a scope for synchronization in an SQL 2008 database like this: SqlSyncScopeProvisioning sqlServerProv = new SqlSyncScopeProvisioning(sqlServerConn, myScope); if ...
6
votes
3answers
2k views

SQL Server 2008: Where is the change tracking table stored?

We have a database running on a shared host via SQL Server 2008. We are now in the position, due to performance constraints, where we have to move the database, along with a website. We use change ...
2
votes
1answer
943 views

Cleaned up change tracking, nulling table anchors not working, ideas?

I have a desktop client that is using the sync framework to synchronise the database to the server. I am experiencing problems occasionally with it "Cleaning up" the tables change tracking. I did ...
0
votes
1answer
4k views

SQL Server: How to unlock a table / row?

We recently updated our WPF application to perform its data synchronisation (using sync framework) within a single transaction against our SQL Server 2008 database. Almost straight away this has ...
0
votes
1answer
575 views

Sync Framework Handling ClientInsert ServerInsert Conflict

I have a application that uses LocalDataCache to synchronise a SQL Server 2008 Express database to a client database (.sdf file). This works great and I am now managing the conflicts. I am using ...
13
votes
1answer
8k views

Syncing SQL Server 2008 Databases over HTTP using WCF & Sync Framework

I've tried to get a solution for the above said question from MSDN Social and other resources from Microsoft. I was specifically looking for offline scenarios where client come online only to fetch ...