<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Import Data from Databricks to SQL Server in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157488#M54572</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231041"&gt;@KSharmaDE&lt;/a&gt;,&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Yes, it is possible to load data from Databricks Unity Catalog tables into SQL Server using SSIS. The common approach is to use the Databricks Simba &lt;A href="https://docs.databricks.com/aws/en/integrations/jdbc-odbc-bi" target="_blank"&gt;ODBC driver&lt;/A&gt; in SSIS, connect to a Databricks SQL warehouse (preferred) or a supported cluster endpoint, and then use SSIS data flow tasks to read from Databricks and write to SQL Server.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Databricks itself does not require special "table settings" for SSIS. The main requirements are connectivity, a valid SQL endpoint, and proper Unity Catalog permissions on the catalog/schema/table.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;You can refer to the instructions &lt;A href="https://docs.databricks.com/aws/en/integrations/jdbc-oss/configure" target="_blank"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;In practice, configure these on the SSIS side:&lt;/P&gt;
&lt;UL class="p8i6j07 p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;Databricks ODBC/JDBC driver&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Server hostname&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Port 443&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;HTTP Path of the SQL warehouse / cluster&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Authentication (PAT or supported auth method)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="p8i6j01 paragraph"&gt;Typical SSIS flow:&lt;/P&gt;
&lt;OL class="p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;Install the Databricks Simba ODBC driver on the SSIS/SQL Server host.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Create a DSN pointing to the Databricks SQL warehouse.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;In SSIS, use an ODBC Source (or ADO.NET source if your setup supports it) to query the Databricks table or view.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Use Data Conversion / Derived Column transforms if needed.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Load the output into SQL Server using OLE DB Destination / SQL Server Destination.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="p8i6j01 paragraph"&gt;Some additional recommendations.... Consider&lt;SPAN&gt;&amp;nbsp;Databricks SQL warehouse over a cluster for BI/ETL-style connectivity.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;For large loads, SSIS over ODBC works, but it may not be the fastest option for very high-volume ingestion.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;If the requirement is a modern managed ETL approach, consider Databricks-native pipelines or managed ingestion tools instead.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 22 May 2026 12:06:36 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-05-22T12:06:36Z</dc:date>
    <item>
      <title>Import Data from Databricks to SQL Server</title>
      <link>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157468#M54567</link>
      <description>&lt;P&gt;Hi our team wants to import data from Databricks catalog tables to SQL server.&lt;/P&gt;&lt;P&gt;Is it possible to do so using SSIS package on SQL server ? what settings are required on Databricks tables?&lt;/P&gt;&lt;P&gt;Suggest me some ETL tools and how to do it using SSIS&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 06:24:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157468#M54567</guid>
      <dc:creator>KSharmaDE</dc:creator>
      <dc:date>2026-05-22T06:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Import Data from Databricks to SQL Server</title>
      <link>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157470#M54568</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231041"&gt;@KSharmaDE&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can create&amp;nbsp;ODBC/ADO.NET Connection on your machine running the SSIS to import data from databricks tables. Databricks provides &lt;A href="https://docs.databricks.com/aws/en/integrations/odbc/download" target="_self"&gt;ODBC driver&lt;/A&gt; which can be use to create ODBC/ADO.NET Connection.&lt;BR /&gt;Follow these Steps&amp;nbsp;&lt;BR /&gt;1. Download and install&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/integrations/odbc/download" target="_blank" rel="noopener"&gt;ODBC driver&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;2. Create a new connection with Databricks host using ODBC driver&lt;BR /&gt;3. Create Databricks table as source and write SQL to select fields from source table in&amp;nbsp;&lt;SPAN&gt;data flow task&lt;/SPAN&gt;&lt;BR /&gt;4. Configure SQL server as destination in&amp;nbsp;&lt;SPAN&gt;data flow task&lt;/SPAN&gt;&lt;BR /&gt;5. Run SSIS task to populate data from source to destination&lt;BR /&gt;&lt;BR /&gt;You can see the details in this &lt;A href="https://www.cdata.com/kb/tech/databricks-ssis-task-import-2008.rst" target="_self"&gt;article&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 07:20:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157470#M54568</guid>
      <dc:creator>ziafazal</dc:creator>
      <dc:date>2026-05-22T07:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Import Data from Databricks to SQL Server</title>
      <link>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157488#M54572</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231041"&gt;@KSharmaDE&lt;/a&gt;,&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Yes, it is possible to load data from Databricks Unity Catalog tables into SQL Server using SSIS. The common approach is to use the Databricks Simba &lt;A href="https://docs.databricks.com/aws/en/integrations/jdbc-odbc-bi" target="_blank"&gt;ODBC driver&lt;/A&gt; in SSIS, connect to a Databricks SQL warehouse (preferred) or a supported cluster endpoint, and then use SSIS data flow tasks to read from Databricks and write to SQL Server.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Databricks itself does not require special "table settings" for SSIS. The main requirements are connectivity, a valid SQL endpoint, and proper Unity Catalog permissions on the catalog/schema/table.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;You can refer to the instructions &lt;A href="https://docs.databricks.com/aws/en/integrations/jdbc-oss/configure" target="_blank"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;In practice, configure these on the SSIS side:&lt;/P&gt;
&lt;UL class="p8i6j07 p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;Databricks ODBC/JDBC driver&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Server hostname&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Port 443&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;HTTP Path of the SQL warehouse / cluster&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Authentication (PAT or supported auth method)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="p8i6j01 paragraph"&gt;Typical SSIS flow:&lt;/P&gt;
&lt;OL class="p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;Install the Databricks Simba ODBC driver on the SSIS/SQL Server host.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Create a DSN pointing to the Databricks SQL warehouse.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;In SSIS, use an ODBC Source (or ADO.NET source if your setup supports it) to query the Databricks table or view.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Use Data Conversion / Derived Column transforms if needed.&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;Load the output into SQL Server using OLE DB Destination / SQL Server Destination.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="p8i6j01 paragraph"&gt;Some additional recommendations.... Consider&lt;SPAN&gt;&amp;nbsp;Databricks SQL warehouse over a cluster for BI/ETL-style connectivity.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;For large loads, SSIS over ODBC works, but it may not be the fastest option for very high-volume ingestion.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;If the requirement is a modern managed ETL approach, consider Databricks-native pipelines or managed ingestion tools instead.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 12:06:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157488#M54572</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-05-22T12:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Import Data from Databricks to SQL Server</title>
      <link>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157495#M54574</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Yes, it is possible to integrate SSIS packages with Delta tables using JDBC/ODBC connectivity.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Required on Databricks side:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;SQL Warehouse or interactive cluster&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;JDBC/ODBC driver&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Hostname, HTTP Path, Port 443, and PAT token&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Proper table permissions in Unity Catalog&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Recommended approach:&lt;/STRONG&gt;&lt;BR /&gt;SSIS → JDBC/ODBC → Databricks SQL Warehouse → Delta Tables&lt;/P&gt;&lt;P&gt;For better performance, use batch/bulk loads instead of row-by-row inserts.&lt;BR /&gt;In modern architectures, many teams use SSIS for orchestration and move heavy transformations to Databricks notebooks, Lakeflow, or ADF.&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 13:35:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/import-data-from-databricks-to-sql-server/m-p/157495#M54574</guid>
      <dc:creator>sudhirr</dc:creator>
      <dc:date>2026-05-22T13:35:42Z</dc:date>
    </item>
  </channel>
</rss>

