I'm trying to find the most efficient method of updating a SQL Server table from a .csv file. I don't think I can do a direct .csv -> SQL Server import (or can I? Not too familiar with T-SQL programming), because the .csv file structure needs to go through some modifications, ie removing/adding columns, filtering out some data, etc. I was thinking of doing this through VB.NET/C#.
The .csv range from 20-30 columns and +500,000 rows. I'm looking to replace or update tables with this data and not add more to it (insert).
The .csv range from 20-30 columns and +500,000 rows. I'm looking to replace or update tables with this data and not add more to it (insert).