I am trying to use bulk insert to dump a bunch of CSV files into different tables. I am creating a dynamic stored procedure that takes in the csv filename and the table to insert to. Basically my issue is that some of the columns in the csv files have quotes around the values which I need to remove. Also some of the columns contain multiple values separated by commas. For this reason I thought it best to use a format file, However I am having trouble. Below is a small sample of one of the CSV files and then my format file:
Id,Name
11,"AL-FL-MS"
75,"Alaska"
69,"Alberta"
12,"Anadarko"
Format File:
9.0
2
1 SQLINT 0 2 "\,"" 1 ID ""
2 SQLCHAR 0 100 "\"\n" 2 Names ""
I am getting an error:
Cannot bulk load. Invalid data type for column number 2 in the format file "C:\basins.fmt".
Any help would be appreciated.
Id,Name
11,"AL-FL-MS"
75,"Alaska"
69,"Alberta"
12,"Anadarko"
Format File:
9.0
2
1 SQLINT 0 2 "\,"" 1 ID ""
2 SQLCHAR 0 100 "\"\n" 2 Names ""
I am getting an error:
Cannot bulk load. Invalid data type for column number 2 in the format file "C:\basins.fmt".
Any help would be appreciated.