Well, lets say I've got 2 Datatables from the beginning.
The first one (source) contains the data from da database. The second one also contains data from a database, nut these values have to be updated into the first database.
Unfortunately they don't have the same structure. The sourcedatatable has some additional columns which the second has not.
For example:
First DT: ID | Name | Company | Age
Second DT: Name | Company | Age
I want the FIRST DataTable to be updated with the values from the second DataTable IF THERE ARE SOME DIFFERENCES (and only the differences).
Any ideas on how to work that out? Any suggestions about performance, even if using very big databases?