vote up 1 vote down star
1

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?

flag

What is your primary key on the table? Can you check against that? Something must be unique on that table somewhere! :-) (CustomerID? another ID?) – marc_s Nov 7 at 17:19
marc_s, unfortunately no - these are just dumps from other systems - i don't get their unique IDs. I need to check if they previously sent the row or not - and I have ~40 fields in a row. – balint Nov 9 at 17:25

1 Answer

vote up 0 vote down check

You could put a unique constraint on the destination table and add error handling code in the application. You can also modify the validation on the partial classes.

link|flag
I did it with constraints, and thanks for the suggestion on validation, I'll work out some in version 2.0:) – balint Nov 30 at 17:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.