Tagged Questions

The Microsoft Sync Framework enables data synchronization in .NET applications in a hub-and-spoke or peer-to-peer relation. It uses metadata to synchronize datasets from different sources and formats to subscribers.

learn more… | top users | synonyms

10
votes
1answer
5k 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 ...
4
votes
3answers
328 views

The SELECT permission was denied on the object 'Notes', database 'Sticky', schema 'dbo'

It appears here: SyncAdapter notesSyncAdapter = notesBuilder.ToSyncAdapter(); ...
3
votes
1answer
306 views

How well does Sync Framework 4 scale?

I've had a little experience with sync 2 and found that it performed terribly for even relatively small datasets (5000 rows or so). I'm coming up to a new project and since the 4.0 CTP is out I was ...
3
votes
0answers
320 views

How to set up performance test for Microsoft Sync Framework?

We developed a Client Server application using Microsoft Sync Framework to synchronize data between a WinForm client application (with a SQL CE Local Cache database) and a SQL SErver 2008 database ...
3
votes
1answer
435 views

Get Change Summary in Microsoft Sync Framework

I am using Microsoft Sync Framework for syncing server and client SQL server 2005 database. My requirement is to get summary of all changes and display it to the user before actually perform sync ...
2
votes
4answers
37 views

WCF deserialization returning 0 list elements

I'm having some problems with deserializing an object. I have following classes: Metadatastore: [DataContract] public class MetadataStore : IEnumerable<ItemMetadata> { private ...
2
votes
1answer
178 views

How to write a custom sync provider for Outlook Contacts?

Can anyone point me to an example of an Outlook Contact custom sync provider for the Microsoft Sync Framework? I would like to use that Framework to build a bidirectional sync between my CRM and ...
2
votes
1answer
430 views

How to Use Sync Framework with Silverlight Isolated Storage Options

A google for Sync Framework shows a few blog posts from May 2010 about the possibilities, but I have not seen anyone actually using the Sync Framework + SL Isolated Storage. Has anyone done this? ...
2
votes
1answer
426 views

sync Framework for Compact Framework

Has anyone got sync framework to work on a mobile device as a sync mechanism in place of RDA or Merge replication? If yes, could you point me to any resources available. If one was to start a green ...
2
votes
1answer
542 views

Microsoft Sync Framework with Mutliple Client and Server Database

I'm working on changes to an application to have a local data store instead of connecting directly to the database server. The client app will then sync changes both ways between the server database ...
2
votes
1answer
428 views

SQL Server 2008 Replication & Sync Framework - Practical Limits

We are looking at hosting our client's data on our own system and using the MS Sync Framework to replicate data with a SQL Server instance on each client's site. Each client might have on average ...
2
votes
1answer
1k views

Microsoft Sync Framework Or Replication

What is deference between Microsoft Sync Framework and Replication? which one is better?
2
votes
0answers
475 views

How to partition client sensitive data using Microsoft Sync Framework (v2 CTP 2)?

Our central database is to be synchronized in a hub & spoke fashion. We need to be able to partition the data in a way that client data is replicated locally only to that client. Has anyone ...
1
vote
1answer
73 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
33 views

SQL Server CE with Sync Framework SP1 and SP2

I couldnt think of a good title so please read the question here: I have a SQL-CE Database in a WinForms Application which is using the Sync-Framework for a simple DownloadOnly Syncronization. Since ...
1
vote
0answers
28 views

Persisting ServerSyncProvider on server in WCF Service Implementation

I am building an occasionally connected system using Microsoft Synchronization Framework with WCF as the transport medium. The client application builds a SyncAgent with a SqlCe synchronization ...
1
vote
1answer
36 views

What is the functionality of __syncTransactions table in SQL Compact database

Does anyone know what __syncTransactions table is used for? Here's my scenario: We have few clients running on SQL Server Compact database syncing with SQL Server 2008 Express server database using ...
1
vote
1answer
160 views

SQL CE to Azure sync framework seems to work but is inconsistent

I am new to Sync Framework. This is using version 2.1 My project involves syncing a SQL CE to SQL Azure (soon to be SQL Server 2008) Right now I am working with a very simple synchronization plan. I ...
1
vote
1answer
32 views

Twice Synching the same Table

I am using Microsoft Sync FrameWork 2.1. I want to Sync one table twice from Source to Client with Sync Direction as UploadAndDownLoad(BiDirectional). During first Sync I need to force one coumn as ...
1
vote
1answer
246 views

Microsoft Sync Framework 2.1 syncing problem with multiple SQLSERVERCe database instances

I am using Microsoft Sync Framework 2.1 to sync Database instances. I have a query related to the following points: Can I sync multiple SQLSERVERCe database instances with SQLSERVER instance at a ...
1
vote
1answer
69 views

CONSTRAINTEXCEPTION issue in Microsoft Sync Framework 2.1

I am using Microsoft Sync Framework 2.1 to sync SQLSERVER and SQLSERVERCe databases. Syncing is working fine for simple insert, update and delete operations in any one the databases. Here I am using ...
1
vote
2answers
226 views

resource/tutorials to implement a microsoft sync framework

I am looking for the resource/tutorials to implement a microsoft sync framework. I want to create a application to achieve Bidirectional synchronization. I have already gone through MSDN. As I am new ...
1
vote
2answers
215 views

Implementation Microsoft Sync Framework

I am looking for resources on Microsoft Sync Framework. Although MSDN and Google Search gave me the brief overview,but I want simple example of demos,implementations of the Sync framework.
1
vote
2answers
341 views

Microsoft Sync Framework

I have been working through some of the sync framework demos and one thing that doesn't seem to be clear is what you have to do to add a table? So if I start with Order and Order Details in my demo ...
1
vote
2answers
446 views

How to use batching with custom change tracking in Sync Framework 2.1?

With Sync Framework 2.1, batching seems to have got in-built support, so in some of the providers we can just mention the batch size and the spool file location (and some other attributes) and the ...
1
vote
2answers
198 views

Sync framework - how to enable and disable unique index inside a sync transaction?

I would like to disable and then rebuild a unique index inside a sync transaction. Can it be done? I have multiple rows in a table that need to be changed but the values being updated violate a ...
1
vote
1answer
141 views

Is it possible to define a custom tracking mechanism with the Microsoft sync framework?

I am currently evaluating the Microsoft sync framework as a possible solution to sync data between two SQL databases. The examples I have seen so far rely on "tracking tables" containing the ...
1
vote
0answers
184 views

Does Microsoft Sync Framework support peer to peer syncing?

Live Mesh framework used to support p2p syncing apparently they discontinued it. In preparation for the integration of Live Framework into the next release of Windows Live, the existing Live ...
1
vote
0answers
309 views

Microsoft Sync Framework 2.0 : is it possible to update the column value within the same sync transaction (Client Upload Server Update) scenario?

Let say, I have a table with 2 columns (OrderId and OrderDate). In the original design, OrderId is the surrogate (which is still somewhat meaningful to the end user since they still like to refer to ...
1
vote
1answer
178 views

Is it possible to synchronize with Microsoft Sync Framework through FTP-transfers?

I'm looking at synchronize methods between two databases and found Microsoft Sync Framework recently. I've been trying to investigate if it suits my needs. My scenario is the following: Two ...
1
vote
1answer
146 views

Tombstone question for SQL Server 2008

So far, I know that change tracking is integrated with SQL Server 2008, and it's being done automatically. What I don't know is whether I should modify the schema by appending a "_tombstone" myself or ...
1
vote
1answer
995 views

books/links/samples on Microsoft Sync Framework for sqlite sync with sql 2008

i'm new to Microsoft Sync Framework and trying to synchronise an sqlite db with sql server 2008 and so fare I read about it on the following websites: ...
1
vote
2answers
385 views

Sync Framework sync database view

can microsoft sync framework sync database views ? or in your SelectIncrementalInsertsCommand can you select and join to multiple tables kinda doing something like a view?
1
vote
1answer
1k views

How do I use Microsoft Sync Framework to sync between SQL Server 2008 and a .NET Webservice?

Does anyone have an example of how to use MS Sync framework with .NET webservices? I have SQL Server 2008, which is exposing data to BlackBerry devices through webservices using regular web methods. ...
1
vote
1answer
334 views

Adding a web Proxy for a client created with NetCFSvcUtil with credentials

We have an implemented a WCF service for sync framework communication with the guidance of http://wcfguidanceformobile.codeplex.com/ . The client in created by NetCFSvcUtil. We have run into a ...
1
vote
0answers
268 views

SyncFramework sync anchor not converted correctly into a valid DateTime string

I'm using SyncFramework 1.0 for syncing a SqlCe 2005 database with SqlServer 2005. I'm setting the Sync anchor like this... CommandText = "Select @sync_new_received_anchor = GETUTCDATE()", but ...
1
vote
3answers
662 views

XCOPY-deploying Microsoft Sync Framework in a no admin rights scenario (i.e. ClickOnce install)

I'm currently designing a smart client app (WPF) which needs to operate in an "occasionally disconnected" mode. For the offline scenario, I'm looking at using: Disconnected Service Agent ...
1
vote
1answer
820 views

Sync Framework Considerations for Smart Client app

Microsoft Sync Framework with SQL 2005? Is it possible? It seems to hint that the OOTB providers use SQL2008 functionality. I'm looking for some quick wins in relation to a sync project. The client ...
0
votes
1answer
10 views

Scopes not created from a template cannot have FilterParameters Error

I am trying to build on the "WebSharingAppDemo-SqlProviderEndToEnd" msdn sample application to build out a custom MSF implementation. As part of that I added parameterized filters to the provisioning. ...
0
votes
3answers
33 views

Sync Framework, filter fake deleted rows

Context: I want to synchronize Sql Server to Sql Compact trough wcf. The client (sqlce) only downloads updates from the server(sql2008) from time to time. On the server nothing gets ever deleted it's ...
0
votes
1answer
35 views

Microsoft Sync Framework - Merge Conflict Resolution Policy

Do you know how the Merge Conflict Resolution Policy in Sync Framework works? The doc here: http://msdn.microsoft.com/en-us/magazine/dd569762.aspx says that Merge is supported by default by the ...
0
votes
1answer
24 views

SSIS or Sync Framework with Change Tracking

Until now, I have worked primarily with LAMP applications, but have a project in which I need to set up two-way syncing between two SQL 2008 servers (one is web-based, the other is inside a firewall). ...
0
votes
0answers
23 views

Delete source file after SyncOrchestrator have synchronized?

Problem : Delete source file after SyncOrchestrator have synchronized? Approach: I am using SyncOrchestrator to sync between two folders(source and destination). Also, I am handling StateChange event ...
0
votes
1answer
19 views

@@DBTS and BInaryFormatter

I have written a client that uses the SyncFramework to coordinate the consolidating of data in a hub and spoke architecture warehousing application. When the sync transactions process the sync ...
0
votes
0answers
11 views

What Types of proxies can be used with ServerSyncProviderProxy?

All the examples I found use the WCF ClientBase<IWCFService> Type for the object parameter in the ServerSyncProviderProxy constructor. Since it takes an object, are there any other proxies that ...
0
votes
1answer
31 views

Explain the usage of Client and Server components in Local Database Cache template

Can someone please explain the intended purpose of the client and server components under the advanced "arrow" option in the Local Database Cache > Configure Data Synchronization dialog please? I ...
0
votes
1answer
29 views

microsoft sync framework when local cache reach maximum capacity

What machanisms or methods, if any, are available to handle the case where the SQL CE has reached it's storage capacity to fully sync an SQL server? I am just planning ahead so I can't actually try ...
0
votes
1answer
46 views

How do you handle “Sync Framework does not automatically handle the deletion of rows that no longer satisfy a filter condition”

http://msdn.microsoft.com/en-us/library/dd918848.aspx "It is important to understand that a scope is the combination of tables and filters. For example, you could define a filtered scope named ...
0
votes
1answer
99 views

Use Sync Framework with SQL 2008 change tracking on both local and remote

What I want is to be able to use Microsoft Sync Framework to sync two SQL 2008 databases that both use the SQL 2008 change tracking feature. One will be a server and the other will be a local ...
0
votes
1answer
86 views

Asp Mvc 3 and Synchronization Framework 2.1

I am creating application under ASP MVC 3 on x64 platform, and try to work with MS Synchronization Framework 2.1 for synchronize MS SQL Express and MS SQL Compact 3.5 SP2 Databases. Client and server ...

1 2