Efficiently identify changed fields in CSV files using c#

后端 未结 5 1693
梦毁少年i
梦毁少年i 2020-12-11 07:09

This turned out to be more difficult than I thought. Basically, each day a snapshot of a customer master list is being dumped by a system into CSV. It contains about 12000

5条回答
  •  遥遥无期
    2020-12-11 07:35

    This may be best accomplished in a database rather than in code: Create two tables, current and old, import the data from the CSV files into the proper tables and use a combination of SQL queries to generate the output.

提交回复
热议问题