Copy Data from Snowflake to Azure
o copy data from Snowflake into Azure Blob Storage without creating a storage integration, you can create an external stage with Azure credentials. Here's how you can do it:
Create the external stage
Copy data into the Azure Blob Storage
Hereβs the process step-by-step:
Create the external stage:
Replace your-account-name
, your-container-name
, your-path
, and your-azure-sas-token
with your actual Azure account name, container name, path, and the SAS token, respectively.
Copy data into the Azure Blob Storage:
Replace your-file-name
with the desired file name in the Azure Blob Storage and your_table
with the name of the table you want to export.
This approach for both GCP and Azure allows you to copy data from Snowflake to your cloud storage without creating a storage integration.
Last updated