The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
164 views

Sync Framework on Android throws SocketTimeoutException

I am about to create an Android test client that tries to sync with a server that has MS Sync Framework running on. I provisioned the database and created the necessary WCF files, and in the browser, ...
0
votes
2answers
50 views

File Synchronization by Sync Framework work on runtime

I'm working on File Synchronization by Sync Framework. I followed File Synchronization Provider Sample but my scenario is DetectChangesOnFileSystemReplica will work on runtime instead of checking Sync ...
0
votes
0answers
93 views

Change Tracking has cleaned up tracking information although Auto Clean up is set to false

On my SQL Server I have change tracking enabled, auto cleanup set to false or to true with a very high retention period like 364 days. Using Microsoft Sync Framework I sync the first time ...
0
votes
1answer
84 views

Microsoft Sync Framework Not synchronizing Azure database with local SQL Server 2008

I am using Microsoft Sync framework to synchronize an Azure database with a local SQL Server 2008 database. Everything is working fine. But I have a small problem as mentioned below I am ...
-2
votes
1answer
85 views

Does Microsoft Sync framework supports this scenario?(synchronization by file's)

I have completely offline two Ms sql server's. I need to synchronize them by file exchanging. This is only possible way. In other words synchronization conversation of framework to turn into the ...
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. ...
1
vote
1answer
405 views

Microsoft Sync Framework COM class error

I have been playing with "Microsoft Sync Framework 2.1" to sync two local sql server 2008 databases with an asp.net project. my code: SqlConnection clientConn = new ...
2
votes
3answers
276 views

Sql Server sync alternatives

We have two Sql 2008 R2 database. First and main one is on-premise which is used by our stock management and accounting systems. The second is for our web site and it is on a 3th party hosting firm ...
0
votes
3answers
320 views

Sync Framework conflict resolution

I am developing N-Tier sync application using the following code example (http://code.msdn.microsoft.com/Database-SyncSQL-Server-e97d1208) and working on conflict resolution. To resolve the conflict ...
1
vote
2answers
536 views

SQLite synchronization with SQL server-Which is the best method? [closed]

I have a requirement. I need to do a bidirectional data synchronization between SQLite db in the Android device and a central SQL server. For this which is the best method? Creating a web service or ...
0
votes
1answer
150 views

Sql Sync causing source server to run out of memory causing error during sync to client server

I am synching my production SQL Server 2008 R2 db with my failover SQL Server 2008 R2 Express server using Microsoft Sync Framework 2.1 and it worked great for a while and then after a few days of ...
0
votes
1answer
42 views

MS Synch Framework - Synch 2 branches to central branch

I'm trying to create a Synch Module using MS Synch Framework wherein records from 2 branches will be synched into a central branch database. I wanted to achieve this with MS Sql Server 2008 R2. I ...
-1
votes
1answer
138 views

Develop application to Sync between sql azure database and sql server database [closed]

I am planning to develop .net application to sync data between sql azure database and sql on-premise database and planning to use sync framework. It is easy to develop application and sync data ...
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 ...
0
votes
0answers
53 views

Customizing the microsoft sync framework response

I am using Microsoft Sync framework 4.0 to sync Ipad data with Central Sql server database. During the Download process, sending entities from Sql database to Ipad database, I want to append one more ...
0
votes
1answer
103 views

Silent install Sync Framework 2.1

i want to silent install Sync Framework 2.1 because i put the redistributable package at http://www.microsoft.com/en-us/download/details.aspx?id=19502 to my setup installation package. Can any1 help? ...
0
votes
1answer
58 views

Sql Compact 3.5 syncronization fails

I have an application that syncs between 2 database: the central one is hosted on a Sql Server 2008 and the local one is a Sql Compact 3.5 database. From time to time I need to upgrade the schema of ...
0
votes
1answer
256 views

Sync Framework: SQL Server to SQL Server To SQL Express

I'm very new to Sync Framework, Still exploring different possibilities. Here is my Scenario. We need to have an application (SQL Server and ASP.Net) which is hosted on our web server. Users can ...
0
votes
1answer
89 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
0answers
206 views

Sync Framework - Batching

I synchronize two remote databases (Sql Express and Sql Compact) using sync framework 2.1 over WCF (N-Tier), using batching. Recently I receive this log file, this is an error that appears quite ...
0
votes
1answer
401 views

Microsoft Sync Framework 2.1 Scope Create Remove Issues [closed]

This is my first application using Microsoft Sync Framework 2.1 so you assume i don't know any thing of it. The question is i need to synchronize tables- these number of tables to synchronize ...
2
votes
0answers
69 views

SyncOrchestrator InvalidComObjectException

I'm trying to work with Microsofts SyncOrchestrator, but I can't get it worked. Does someone has experience with it and is willing to help me with it? using Microsoft.Synchronization; using ...
1
vote
1answer
233 views

SYNC FRAMEWORK-Batching

I am able to synchronize two remote databases using sync framework 2.1 over WCF(N-Tier) . To improve performance while transferring large data, I implemented Batching. But I am facing below error ...
3
votes
4answers
486 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
92 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
0answers
138 views

MS Sync Toolkit how to handle huge initial download

We're using Microsoft Sync Framework Toolkit to allow some iOS devices to synchronize their SQLite local storage with a central SQL Server database over an OData service (just like the sample does). ...
0
votes
3answers
160 views

how do I create a DbSyncForeignKeyConstraint to a table with a composite Primary Key

I am trying to create a DbSyncForeignKeyConstraint to a table with a composite Primary Key but, I keep getting errors. Here is some sample code to demonstrate what I am doing: EXAMPLE TABLES: USE ...
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
0answers
27 views

Object null reference (parameter replicaId is null) error while trying to call DBSyncProvider.GetChangeBatch using a custom DbSyncProvider

My question sums up the issue. I have looked around and stumbled on this thread http://social.microsoft.com/Forums/is/syncdevdiscussions/thread/047b9aae-810f-4d5a-b57a-16a4a3dfe7f4 . But no luck, I'm ...
1
vote
3answers
203 views

Microsoft Sync for Ado.Net - efficiency, how to improve it?

Today I have finally managed to run client(windows mobile device) - wcf - sql server 2008 synchronization (after many problems, mostly for MS part) I did test. For 24 000 records the average time for ...
0
votes
1answer
62 views

Which Microsoft's Synchronization assemblies are required for device in reference?

I built app for device with Microsoft.Synchronization services for Ado.net. I picked three assemblies: Microsoft.Synchronization.Data Microsoft.Synchronization.Data.Server ...
0
votes
1answer
389 views

Microsoft Sync Framework, windows mobile device -> WCF -> sql server, possible?

I have downloaded from the sync framework webpage an example demonstrating synchronization process between sql ce and sql server through wcf service. I've wanted to create windows mobile application ...
0
votes
1answer
163 views

Can I use Sync Framework just for transfering data without provisioning (using sync tables)?

Is it possible to configure the framework to transfer records only based on filters without sync tables and all these additionals tables used in a normal synchronization process? Thanks!
0
votes
1answer
258 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
0answers
264 views

DB Sync with MS Sync Framework 2.1 (DB2 as Server to MSSQLServer as client)

Attempting 'DownloadOnly' Sync from DB2 Server to SQLServer as Client Below is my Configuration DB2 Server Provider DbServerSyncProvider serverSyncProvider = new DbServerSyncProvider(); SQL ...
0
votes
1answer
169 views

Invalid cast exception SqlSyncprovider()

I am using Microsoft Sync framework and this issue has no clear solution in Google. I am trying to create a client provider for SQLServer Client as below `public class SampleClientSyncProvider : ...
0
votes
1answer
90 views

Wcf Sync DataBase Application IIS looking into wrong path

I am currently using Wcf with Sync application. I have deployed the application in C:/Inetpub/wwwroot/DbSyncWcfService I have deployed from path ...
1
vote
1answer
318 views

Getting a System.Error when attempting to Sync using batching in Sync Framework

I am writing an n-tiered application that uses the Sync Framework v2.1 in combination with a WCF web service. My code is based on this example: Database-Sync Syncing seems to work without a problem. ...
0
votes
2answers
439 views

After schema changes, do not sync records prior to re-provision

Note: user only works in Staging DB; Production DB is for viewing only. When we started those two database were exactly same, so provision databases and sync were working fine. Then problem starts ...
1
vote
2answers
263 views

Data synchronization with Sync Service

I'm trying to do a database sync between Windows CE and SQL Server 2008. Appreciate if someone who already did this advice me on how I could start up, or any link where I can read on. Thanks in ...
0
votes
1answer
48 views

Performing Get Copy All Operation With Microsoft Sync Framework

I'm testing out Microsoft Sync Framework to try and see if it'll be suitable for a task that I'm working on. One of the things I'd like to be able to do is to have the option to not just send changed ...
0
votes
2answers
110 views

Unable to obtain a new server anchor

I am getting the error: Unable to obtain a new server anchor. Make sure that you can establish a connection to the server database and that the SelectNewAnchorCommand property of the ...
0
votes
0answers
117 views

Please help me understand the structure of this Sync Framework WCF service example

I need some help understanding the structure of the sample application located here: http://code.msdn.microsoft.com/Database-Sync-SQL-Server-7e88adab The solution contains three projects. In the ...
2
votes
1answer
210 views

Incremental / Differential backup to Azure blob

Is it possible to achieve incremental / differential backups using Azure Blobs? I would like to send only the pieces of data that changed. Maybe something with block blobs? Thank you!
0
votes
1answer
210 views

Sync Framework Filtering Not Detecting Foreign Key Changes

I'm having an issue with the Microsoft Sync Framework 2.1 and I'm hitting a stumbling block. To simplify lets say I'm syncing two tables, ConfigSet and ConfigItem, which have the following structure: ...
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 ...
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 ...
0
votes
0answers
17 views

MS Sync Framework - Deploying Pre Populated Database [duplicate]

Possible Duplicate: MS Sync Framework Deploy with a Pre Populated Database? I'd like to deploy a pre-populated database us MS Sync Framework. Steps: 1) Do a local sync that hits the db ...
0
votes
0answers
25 views

Determine if a table has been synchronized

I found this answer but it doesn't work for my setup. Sync Framework how to Determine Rows that has been Synchronized to SQL SERVER Database Has anyone been able to determine if a sync provider has ...
1
vote
1answer
610 views

Sync Framework between SQL Server 2008 and SQL Server CE

I'm working with a moderately sized database of about 60,000 records. I am working on building a mobile application which will be able to check out a single table into a compact .sdf on for viewing ...

1 2 3 4 5 6