Hi,
I'm doing updates from Excel/CSV files to a database. I'm using LINQ to SQL for database operations. I have quite a few columns to update/insert, so I guess it would be easier to generate a Checksum somehow for the whole row.
For example I can have the same person [firstname,lastname,ssn,address] in the destination table, BUT sent by another company, so they are only differ by one integer value); so I'm wondering, is there a solution to make sure I'll have a unique Checksum for all my unique rows?
Should I rather implement it somehow in a stored procedure?