I am getting an error when attempting to use BULK INSERT to add data from a small csv file to a table.
Here is the SQL statement:
BULK INSERT Temp
FROM 'c:\Actuals.csv'
With
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\r\n'
)
Here is the CSV file:
03017,09/17/2009,51.0,78.0,64.5,0.5,0.0
03103,09/17/2009,40.0,70.0,55.0,10.0,0.0
03145,09/17/2009,76.0,103.0,89.5,0.0,24.5
03804,09/17/2009,52.0,83.0,67.5,0.0,2.5
03812,09/17/2009,63.0,69.0,66.0,0.0,1.0
I have 2 CSV files I am trying this with, both in the above format. One has 5 rows and the other has 225 rows.
The one with 5 rows gives the following error:
Msg 4864, Level 16, State 1, Line 1
Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 7 (CDDs).
The file with 225 rows gives the following error:
Msg 4866, Level 16, State 1, Line 1
The bulk load failed. The column is too long in the data file for row 1, column 7. Verify that the field terminator and row terminator are specified correctly.
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
Msg 7330, Level 16, State 2, Line 1
Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
Any help on this would be much appreciated.
Here is the SQL statement:
BULK INSERT Temp
FROM 'c:\Actuals.csv'
With
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\r\n'
)
Here is the CSV file:
03017,09/17/2009,51.0,78.0,64.5,0.5,0.0
03103,09/17/2009,40.0,70.0,55.0,10.0,0.0
03145,09/17/2009,76.0,103.0,89.5,0.0,24.5
03804,09/17/2009,52.0,83.0,67.5,0.0,2.5
03812,09/17/2009,63.0,69.0,66.0,0.0,1.0
I have 2 CSV files I am trying this with, both in the above format. One has 5 rows and the other has 225 rows.
The one with 5 rows gives the following error:
Msg 4864, Level 16, State 1, Line 1
Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 7 (CDDs).
The file with 225 rows gives the following error:
Msg 4866, Level 16, State 1, Line 1
The bulk load failed. The column is too long in the data file for row 1, column 7. Verify that the field terminator and row terminator are specified correctly.
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
Msg 7330, Level 16, State 2, Line 1
Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
Any help on this would be much appreciated.