<?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: Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5189451#M16417</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1512709"&gt;@janudaS&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to push data from Fabric down to a local SQL Server, you will need an enterprise data gateway.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THen you can set up a pipeline in Fabric that will target your local SQL Server through the gateway.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2026 13:54:40 GMT</pubDate>
    <dc:creator>tayloramy</dc:creator>
    <dc:date>2026-05-27T13:54:40Z</dc:date>
    <item>
      <title>Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5188487#M16397</link>
      <description>&lt;P class=""&gt;Hi everyone,&lt;/P&gt;&lt;P class=""&gt;I am able to successfully connect to a Microsoft Fabric Lakehouse from SSMS.&lt;/P&gt;&lt;P class=""&gt;I also have a local SQL Server instance running on localhost.&lt;/P&gt;&lt;P class=""&gt;However, the issue is that my local SQL Server connection is unable to retrieve/load data from the Fabric Lakehouse connection.&lt;/P&gt;&lt;P class=""&gt;Scenario:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Fabric Lakehouse connection works in SSMS&lt;/LI&gt;&lt;LI&gt;Localhost SQL Server connection also works separately&lt;/LI&gt;&lt;LI&gt;But I cannot pull Fabric data into local SQL Server tables&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;I would like to understand:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is direct data transfer between Fabric Lakehouse and local SQL Server supported through SSMS?&lt;/LI&gt;&lt;LI&gt;Can stored procedures or queries in localhost SQL Server access Fabric Lakehouse tables?&lt;/LI&gt;&lt;LI&gt;Are linked servers, external tables, gateways, or any additional configurations required?&lt;/LI&gt;&lt;LI&gt;What is the recommended approach for loading Fabric data into local SQL Server tables?&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;My objective is to validate large-volume data movement between the source and local target tables.&lt;/P&gt;&lt;P class=""&gt;Any guidance would be appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 17:29:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5188487#M16397</guid>
      <dc:creator>janudaS</dc:creator>
      <dc:date>2026-05-25T17:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5188962#M16398</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1512709"&gt;@janudaS&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Why this is happening:&lt;/STRONG&gt;&lt;BR /&gt;Your local SQL Server instance cannot directly “see” or query Microsoft Fabric Lakehouse tables just because both connections are available in SSMS. SSMS only acts as a client tool; it does not necessarily enable cross-environment querying between Fabric and local SQL Server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Recommended Approaches&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Linked Server (Recommended for Validation Scenarios)&lt;/P&gt;&lt;P&gt;You need to create a Linked Server in your local SQL Server pointing to the Fabric SQL Endpoint.&lt;/P&gt;&lt;P&gt;Workaround:&lt;/P&gt;&lt;P&gt;Connect to Fabric SQL Endpoint&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Create Linked Server in local SQL Server&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Query Fabric tables using OPENQUERY&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;PRE&gt;SELECT *&lt;BR /&gt;&lt;BR /&gt;FROM OPENQUERY([FabricLakehouse], 'SELECT * FROM dbo.TableName')&lt;/PRE&gt;&lt;P&gt;Then load into local tables:&lt;/P&gt;&lt;PRE&gt;INSERT INTO LocalTable&lt;BR /&gt;&lt;BR /&gt;SELECT *&lt;BR /&gt;&lt;BR /&gt;FROM OPENQUERY([FabricLakehouse], 'SELECT * FROM dbo.TableName')&lt;/PRE&gt;&lt;P&gt;Requirements:&lt;/P&gt;&lt;P&gt;ODBC Driver 18 for SQL Server&lt;/P&gt;&lt;P&gt;Fabric SQL Endpoint hostname&lt;/P&gt;&lt;P&gt;Authentication configuration&lt;/P&gt;&lt;P&gt;Network/firewall access must be enabled&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is usually the straightforward approach for testing large-volume validation.&lt;BR /&gt;If this option does not work,&lt;/P&gt;&lt;P&gt;Then try next option&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Option 2 — Fabric Data Pipeline / Copy Activity (Best Enterprise Approach)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Use Microsoft Fabric Data Factory pipelines.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Lakehouse&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Destination:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Local SQL Server&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Requirements:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;On-Premises Data Gateway&lt;/P&gt;&lt;P&gt;SQL connectivity from gateway machine&lt;/P&gt;&lt;P&gt;Advantages:&lt;/P&gt;&lt;P&gt;Better for large-scale data movement movement&lt;/P&gt;&lt;P&gt;Comparable loading&lt;/P&gt;&lt;P&gt;Monitoring and Retries&lt;/P&gt;&lt;P&gt;Production-ready-data.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;&lt;STRONG&gt;If this helps,&amp;nbsp;✓ Mark as Kudos | Help Others&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 15:31:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5188962#M16398</guid>
      <dc:creator>Murtaza_Ghafoor</dc:creator>
      <dc:date>2026-05-26T15:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5189451#M16417</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1512709"&gt;@janudaS&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to push data from Fabric down to a local SQL Server, you will need an enterprise data gateway.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THen you can set up a pipeline in Fabric that will target your local SQL Server through the gateway.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 13:54:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5189451#M16417</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-05-27T13:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5190345#M16456</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1512709"&gt;@janudaS&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/695681"&gt;@Murtaza_Ghafoor&lt;/a&gt;&amp;nbsp; for your inputs.&lt;BR /&gt;&lt;SPAN&gt;We’d like to follow up regarding the recent concern. Kindly confirm whether the issue has been resolved, or if further assistance is still required. We are available to support you and are committed to helping you reach a resolution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2026 06:42:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5190345#M16456</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-05-29T06:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Local SQL Server unable to retrieve data from Microsoft Fabric Lakehouse through SSMS</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5191370#M16484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1512709"&gt;@janudaS&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We wanted to kindly follow up regarding your query. If you need any further assistance, please reach out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2026 12:47:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Local-SQL-Server-unable-to-retrieve-data-from-Microsoft-Fabric/m-p/5191370#M16484</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-06-01T12:47:38Z</dc:date>
    </item>
  </channel>
</rss>

