cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Import Data from Databricks to SQL Server

KSharmaDE
Visitor

Hi our team wants to import data from Databricks catalog tables to SQL server.

Is it possible to do so using SSIS package on SQL server ? what settings are required on Databricks tables?

Suggest me some ETL tools and how to do it using SSIS

1 REPLY 1

ziafazal
Databricks Partner

Hi @KSharmaDE 

You can create ODBC/ADO.NET Connection on your machine running the SSIS to import data from databricks tables. Databricks provides ODBC driver which can be use to create ODBC/ADO.NET Connection.
Follow these Steps 
1. Download and install ODBC driver 
2. Create a new connection with Databricks host using ODBC driver
3. Create Databricks table as source and write SQL to select fields from source table in data flow task
4. Configure SQL server as destination in data flow task
5. Run SSIS task to populate data from source to destination

You can see the details in this article.

Thanks