1

Is it true that Azure SQL cannot import blob storage? (SQLDW can and also stand alone instance)

as given in this document, it cannot. But the document is from 2018. Has things changed after that?

enter image description here

2 Answers 2

1

Azure SQL Database does not have Polybase but it does have BULK INSERT, eg

BULK INSERT Product
FROM 'data/product.dat'
WITH ( DATA_SOURCE = 'MyAzureBlobStorageAccount');

See this question for more details and an example:

Create a table in Azure SQL Database from Blob Storage

Main page:

https://learn.microsoft.com/en-us/archive/blogs/sqlserverstorageengine/loading-files-from-azure-blob-storage-into-azure-sql-database

Sign up to request clarification or add additional context in comments.

Comments

0

It is true. PolyBase is not part of Azure SQL DB . And the document in your question is the latest.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.