Hi
I have a very large table (1.3M rows, 7.17GB currently) with two columns, emailID and emailBody which I want to sync to another server.
Old data is never changed, so I only need to find new rows and copy them across to the new server.
The data sync wizard is very slow syncing this table because it compares all the old data – is there anyway to tell it “just find new rows and copy those?”
Alternatively, is there a way I can do a scheduled backup that only backs up new rows somehow? Maybe just doing last x rows in each backup (which would have some overlap, but would save dumping the entire database)
I should add – I can currently do this manually by doing “select * from emalbody where emailID > x” and then right click on results and “export all rows” etc, but I want a way of doing this automatically
Thanks