Hi all,
My scenario is as follows. I have a client and server. The client pulls data from the server by using a value that is stored locally called LastReplication.
This value is passed to the server whenever a request for replication data is made and the server compares it to a field in my database called LastUpdated and returns and rows where LastUpdated > LastReplicated.
This works fine for the most part but the problem is when I start dealing with international dates and times this strategy falls apart.
I have never written any replication ‘engines’ before and am not sure as to how to resolve this problem. I am assuming however that the solution involves either using epoch time or universal timestamps.
What is best practice in such a scenario?
Any advice would be highly appreciated…