I couldn't find a similar post, but an article in the MSDN which i do not understand so will link the article and ask for help.
I am using Sync-Framework to sync between a Sql-Server-CE and a Sql-Server-R2 Instance. Unfortunately i run into a OutOfMemory-Exception pretty quickly (i am syncing like 8 tables and the exception happens on the first table already), so i was thinking about ways to download smaller package and found the following article on MSDN which discribes how to add a batchsize to the Sync.
Unfortunatly this aint a one-liner (im really questioning the usefulness of sync-framework when you have to programm everything by hand...) but the code is pretty straight forward (i guess... couldnt test it yet) except for a little bit of SQL which i unfortunately have no idea of.
http://msdn.microsoft.com/en-us/library/bb902828%28v=sql.100%29.aspx
This is the Article, and my question is: Does anybody know what
[ ... ]
SELECT MIN(UpdateTimestamp) AS TimestampCol FROM Sales.Customer
UNION
SELECT MIN(InsertTimestamp) AS TimestampCol FROM Sales.Customer
[ ... ]
means? There are no TimeStamps in my SQL-Tables neither in the Tombstones, none of the Sync-Framework added rows are in fact TimeStamps. I dont know what the Code Should do nor what it does. Can anybody help me?
Thanks in Advance!