The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
12
votes
4answers
8k views

Can you sync CoreData with iCloud?

does anyone know if and how you can sync CoreData apps with iCloud? If I understand the Apple iCould instructions right you can not sync CoreData, can you?
4
votes
2answers
1k views

Sync nightmare - is it possible to use Merge Replication (or RDA) between 2 SQL CE instances without IIS?

We are faced with the following problem that involves keeping the following in sync: 1 Centralised Server (IIS / MSSQL 2005) Many Desktop WPF clients distributed by ClickOnce Many Mobile clients - ...
6
votes
2answers
5k views

Using MS Sync Framework to synchronize two SQL CE Dbs

I'm just working into the Microsoft Sync Framework. It looks quite easy to sync a local SQL CE 3.5 Database with a remote SQL Server 2008 using the SqlSyncAdapterBuilder and SqlServerChangeTracking. ...
4
votes
1answer
1k views

Microsoft Sync Framework clashes with Nhibernate TooManyRowsAffectedexception

We are trying to implement the Microsoft Sync Framework into our application that persists it's domain using NHibernate. One of the problems we encountered is that after the Sync Framework has ...
1
vote
2answers
4k views

Sync Framework : Can I Sync only a subset of my tables?

The regular code snippet of syncing data with sync framework is this: LocalDBSyncAgent syncAgent = new LocalDBSyncAgent(); Microsoft.Synchronization.Data.SyncStatistics syncStats = ...
3
votes
3answers
2k views

Microsoft Sync Framework - How to reprovision a table (or entire scope) after schema changes?

I have already setup syncing with Microsoft Sync Framework, and now I need to add fields to a table. How do I re-provision the databases? The setup is exceedingly simple: Two SQL Express 2008 ...
1
vote
1answer
2k views

Local Data Cache Sync does not save client changes to sdf file

I created a new c# project and follwed the steps from this tutorial to create a LocalDataCache: ...
0
votes
3answers
181 views

MS Sync Framework Deploy with a Pre Populated Database?

I'd like to deploy an application with a pre-populated Sql CE Database. Steps: 1) At Deploy: Create sql ce databse using LocalDataCache object in VS 2010 and have it prepopulated. Zip up this db ...
8
votes
3answers
3k views

Sync Framework Resources

I am looking for resources on Microsoft Sync Framework. Although MSDN and Google Search gave me the brief overview, I want some demos and presentations. Also, is Live Mesh based on Sync Framework?
11
votes
4answers
1k views

Open source framework à la Microsoft Sync Framework suggestions?

We are implementing a warehouse management system atop an open source stack (Java, web services & friends). In this system, we want to integrate many mobile devices which should also be capable of ...
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 ...
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 ...
2
votes
1answer
2k views

Sync Framework: Can you sync over http

We are planning to use Sync Services for ADO.NET to sync stores with headoffice and it has been suggested that I sync via a WCF proxy. Does syncing via a WCF proxy mean that I will be able to sync ...
1
vote
1answer
2k views

sync framework server to server synchronization

I have kind of a such scenario: Here i need to synchronize local server database with main DB server(example: computers in office are connected to office server and they use it like a local server, ...
1
vote
2answers
867 views

Does Anyone Have Experience Creating an Occasionally-Connected Browser App With NHibernate?

We need to make our enterprise ASP.NET/NHibernate browser-based application able to function when connected to or disconnected from the customer's server. Has anyone done this? If so, how did you do ...
5
votes
1answer
501 views

Does NHibernate intergrate well with Microsoft Sync Framework?

We are wanting to use both NHibernate and Microsoft Sync Framework - has anyone had experience combining these two frameworks? Thanks, Ashley
4
votes
1answer
346 views

Uninstalling Sync Framework without breaking Visual Studio

Not strictly programming-related, but I do not know where else to post this question: Is Sync Framework a truly indispensable component of Visual Studio 2010? From what I read about the Sync ...
3
votes
2answers
1k views

BulkInsertCommand failed in Sync Framework 2.1

On occasion I get the following error when trying to synchronize from SQL Express to SQL Server using Sync Framework 2.1. Once a client gets this error they have to reinitialize the scope. There ...
1
vote
1answer
1k views

Sync framework with SQL Server 2008 Change Tracking

Is there a way to synchronize two SQL Server 2008 databases(any edition) using Microsoft Sync Framework and SQL Server 2008 Change Tracking mechanism, instead of provisioning the databases with the ...
0
votes
1answer
91 views

LocalInsertRemoteInsert error in SyncFramework 2.1 when changing directions

I am using sync framework 2.1. What i am doing is changing the directions of sync continously Example. first i set bidirectional, then may be upload and then download. I am creating new scopes ...
0
votes
1answer
93 views

LocalInsertRemoteInsert conflicts on initial sync

I am trying to implement unidirectional sync from Server to Client, both running SQLExpress 2008 using Sync Framework 2.1. I'm having trouble during initial sync. Two scopes are defined on the ...
0
votes
1answer
262 views

Sync Framework and add columns

Well, i'm probing Sync Framework 2.1. It worked great, until i altered a table and added a column. There's a lot written about the theme. Here is my approach Alter table and add a column in the ...
0
votes
1answer
1k views

Microsoft Sync Framework, Microsoft Entity Framework 4.1 & SQL CE 4.0

We are developing an occasionally connected application that uses SQL Compact on the client machines and SQL Server 2008 (with change tracking) on the server. The application is being developed using ...
0
votes
2answers
1k views

Offline database synchronization with Server

We are having a client-server architecture where client goes offline when connects remotely to server. Server is essentially a SQL Server 2008, with few tables each with thousands of records. Each ...