Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Community,
I need to copy data from a fabric lakehouse to snowflake database. What are the different ways I can dump the data?
Thank You!
Solved! Go to Solution.
hello @rakeshdasari
there are multiple ways to do this.
each way has different tradeoff
Direct pipelines are faster but require staging; external tables avoid copying but require upfront permissions.
OneLake External Tables
Expose Fabric Iceberg tables directly in Snowflake via external volumes for real-time querying without physical data copying.
https://www.snowflake.com/en/blog/microsoft-partnership-enhancing-interoperability
Azure Blob Intermediate
Stage data in Azure Blob Storage first for large/complex datasets, then use Snowflake’s `COPY INTO` to load from Blob (ideal for batch transfers).
Pipeline Copy Activity
Use Fabric’s built-in connector to directly map Lakehouse data to Snowflake via the Copy Data Assistant, requiring manual staging configuration (Azure Blob) for optimal performance.
if this is helpful please accept the answer
hello @rakeshdasari
there are multiple ways to do this.
each way has different tradeoff
Direct pipelines are faster but require staging; external tables avoid copying but require upfront permissions.
OneLake External Tables
Expose Fabric Iceberg tables directly in Snowflake via external volumes for real-time querying without physical data copying.
https://www.snowflake.com/en/blog/microsoft-partnership-enhancing-interoperability
Azure Blob Intermediate
Stage data in Azure Blob Storage first for large/complex datasets, then use Snowflake’s `COPY INTO` to load from Blob (ideal for batch transfers).
Pipeline Copy Activity
Use Fabric’s built-in connector to directly map Lakehouse data to Snowflake via the Copy Data Assistant, requiring manual staging configuration (Azure Blob) for optimal performance.
if this is helpful please accept the answer
Hii @nilendraFabric , while connecting to snowflake using copydata activity, I am getting an Authentication issue (Invalid credentials) inspite of providing the valid credentials. Do you know why is this happening?