Cannot fetch a row from OLE DB provider “BULK” for linked server “(null)”

前端 未结 12 1774
粉色の甜心
粉色の甜心 2021-02-18 13:24

I try to load my database with tons of data from a .csv file sized 1.4 GB. But when I try to run my code I get errors.

Here\'s my code:

USE [Intradata N         


        
12条回答
  •  不要未来只要你来
    2021-02-18 13:47

    Resurrecting an old question, but in case this helps someone else: after much trial-and-error I was finally (finally!) able to get rid of this error by changing this:

    ROWTERMINATOR = '\n'
    

    To this:

    ROWTERMINATOR = '0x0A'
    

提交回复
热议问题