So I've got a few tables with a lot of data. Let's say they are table A, B and C. I want to add auto increment ID fields for each of those tables, normalize them by swapping some fields between the tables and add an additional table D. Gulp. There are three goals: 1) redesign the database, and reload the existing data. 2) Enable a data load from a spreadsheet to add/edit/delete the four tables. 3) Enable a web front end to add/edit/delete the four tables.
My current approach:
- I thought I would export a flat file for all the data in the 3 existing tables into a csv (spreadsheet).
- Then refactor the database design structure
- Then use linq to excel to read back the csv spreadsheet records into dto objects
- Then use the Entity Framework to transform those dto objects into Entities to update the database with the appropriate relationships between tables
- The spreadsheet would be re-used for future bulk data add/edit/deletes
What about the following tools? SSIS Bulk insert Stored procedures
Am I over complicating this? Is there a better way?