Hi,
Less than 10 client computers, each with their own installation have to upload data to a central server.
The client database looks like:
tblSales - rowGuid - randomNumber
Central Server database:
- rowGuid
- randomNumber
- dateInserted
I plan to use WCF to send the files to the central server.
How can I verify the rows were inserted to the server? What kind of verification options do I have?
I could return the # of rows inserted and compare that with the # that was sent, but is there any other more robust method?