We currently have a process where we receive an inventory file from a vendor every hour. We need to compare that inventory data in the file to what we currently have in our DB. Any thoughts/ideas on how you would approach this?
Here is what we are doing currently:
We pull the data from the db table into C# and do the same with the file then use LINQ to compare.
We had originally been staging the file data into a separate db table then comparing.
There can be up to about 100,000 records in the file.
Thanks in advance.....
S