An Azure service for ingesting, preparing, and transforming data at scale.
Can you try exploring Azure DeltaLake for Databricks
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
In ADF I am using databricks activity to connect to a notebook which does a select * from xyz.
Question:
Then how do I land this result into my data storage?
I can use a copy activity but what should the source of the copy activity be having mentioned the above example?
Thank you
An Azure service for ingesting, preparing, and transforming data at scale.
Can you try exploring Azure DeltaLake for Databricks
Hi,
As mentioned before, there databricks view return several fields.
These are fields which I would like to access from the copy source activity.
How do I do this?
Thanks
You can load the results of your select query in storage by directly connecting your Notebook to Storage
You can visit below article which explains how to connect to Storage from a Databricks Notebook
The same notebook which returns select result can store it in Storage as well
https://www.sqlshack.com/accessing-azure-blob-storage-from-azure-databricks/
As a first step you will have to mount Azure Storage in Databricks, the steps are added in the link above
Thanks!