Trying to upload a json response from my blog storage into my sql table raw. Established the connection, so that is not a problem, however when I try to run
BULK INSERT dbo.httpjson
FROM 'xxxxxx [path]'
WITH ( DATA_SOURCE = 'MyAzureBlobStorage');
I get
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 1. 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)".
I cannot find out what I am doing wrong, as I am just following MS tutorial: https://learn.microsoft.com/en-us/sql/relational-databases/json/import-json-documents-into-sql-server?view=sql-server-ver16
I hope someone can help me out as I am finally very close to my goal!