Files
sql-server-samples/samples/features/sql-bulk-load
davidbaxterbrowne 6487355865 Update LoadFromAzureBlobStorage.sql
Just ran through this and got the error

    Cannot obtain the required interface ("IID_IColumnsInfo") from OLE DB provider "BULK" for linked server "(null)"

on the BULK INSERT.  Had to add 

ROWTERMINATOR = '0x0a',

Also make the CCI optional, as it requires premium, and a sample should not do that.

Also BULK INSERT to a temp table fails with:

Msg 12703, Level 16, State 1, Line 55
Referenced external data source "MyAzureBlobStorage" not found.

So added a note to the CREATE TABLE.
2017-05-08 17:05:27 -05:00
..