to tentando ler um arquivo xlsb (formato binário do excel) usando o bulk. porém, está me dando o seguinterro:
Msg 4866, Level 16, State 1, Line 2
The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly.
Msg 7399, Level 16, State 1, Line 2
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 2
Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
Meu comando está da seguinte forma:
BULK
INSERT db_riscomercado.dbo.
tb_bulk
FROM
'C:\PROJETO\CurvaIGPM.xlsb'
WITH
(
FIRSTROW
= 1
,
FIELDTERMINATOR
=''
,
ROWTERMINATOR
='\n'
,
codepage='RAW')
Como
arrumar?