开发者

Bulk Upload: "unexpected end of file" on new server

开发者 https://www.devze.com 2023-02-20 09:16 出处:网络
I am trying to do a bulk upload in one table in our sql database. This query was running good before, when we had the database on different server, but now on the new server I am getting an error.

I am trying to do a bulk upload in one table in our sql database. This query was running good before, when we had the database on different server, but now on the new server I am getting an error. Here is all I have: sql bulk import query:

BULK
INSERT NewPro开发者_Go百科ducts
FROM 'c:\newproducts.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
GO

And the errors I am getting are:

Msg 4832, Level 16, State 1, Line 1
Bulk load: An unexpected end of file was encountered in the data file.
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)".

Thanks for any help in advance.


For anybody else who comes across this question looking for an answer, this error also happens when the number of columns in your CSV file don't match the columns of the table you're doing the bulk insert into.


I've encountered this before and there are a few things to look for:

  1. Make sure that your csv file doesn't have any blank rows at the top.
  2. Make sure that there are no additional blank rows at the end of the file.
  3. Make sure that the ROWTERMINATOR is actually \n and not \r\n

If you do all three of these and are still getting the error let me know.


In my case the file I was trying to access was in a directory that the SQL Sever process did not have access to. I moved my flat files to a directory SQL had access to and this error was resolved.

0

精彩评论

暂无评论...
验证码 换一张
取 消