<?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: Select data from Lakehouses via Fabric API in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693084#M9302</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Unfortunatly, the Fabric API does not allow to get your Data. It's here to manage Fabric artifacts.&lt;/P&gt;&lt;P&gt;You have to use the SQL Endpoint of your lakehouse or to out in place a GraphQL API to get your Data outside MS Fabric.&lt;/P&gt;</description>
    <pubDate>Wed, 14 May 2025 21:36:07 GMT</pubDate>
    <dc:creator>yvaubourg</dc:creator>
    <dc:date>2025-05-14T21:36:07Z</dc:date>
    <item>
      <title>Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4692305#M9287</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I am wondering how I can do a SELECT on a Lakehouse from an external "home-made" tool. Actulally, I would like to send my SQL statement via Fabric API, but, in the folowing documentatio, I am not able to find the appropriate call:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-api" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-api&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you by advance for your help,&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 10:31:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4692305#M9287</guid>
      <dc:creator>Nicolas_DHONT</dc:creator>
      <dc:date>2025-05-14T10:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693084#M9302</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Unfortunatly, the Fabric API does not allow to get your Data. It's here to manage Fabric artifacts.&lt;/P&gt;&lt;P&gt;You have to use the SQL Endpoint of your lakehouse or to out in place a GraphQL API to get your Data outside MS Fabric.&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 21:36:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693084#M9302</guid>
      <dc:creator>yvaubourg</dc:creator>
      <dc:date>2025-05-14T21:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693280#M9304</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/801467"&gt;@Nicolas_DHONT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can only do a select on Lakehouse using SQLEndpoint by utilising ODBC driver from local.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fetch sql endpoint of your lakehouse, authentication using your identity&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;server_name&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'jkshdjhsdf.datawarehouse.pbidedicated.windows.net'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;db_name&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;'You lakehouse name'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;user_name&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'abc@xyz.com'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;password&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;'xxxxxx'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;mydb&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;pyodbc&lt;/SPAN&gt;&lt;SPAN&gt;.connect(&lt;/SPAN&gt;&lt;SPAN&gt;'DRIVER='&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;driver&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;';SERVER='&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;server_name&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;';PORT=1433;DATABASE='&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;db_name&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;';UID='&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;user_name&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;';PWD='&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;password&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;';Authentication=ActiveDirectoryPassword;'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cursor&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;mydb&lt;/SPAN&gt;&lt;SPAN&gt;.cursor()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# Sample select query &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cursor&lt;/SPAN&gt;&lt;SPAN&gt;.execute(&lt;/SPAN&gt;&lt;SPAN&gt;"SELECT TOP(10) * FROM INFORMATION_SCHEMA.TABLES"&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;row&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;cursor&lt;/SPAN&gt;&lt;SPAN&gt;.fetchone()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;while&lt;/SPAN&gt; &lt;SPAN&gt;row&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;row&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;row&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;cursor&lt;/SPAN&gt;&lt;SPAN&gt;.fetchone()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Srisakthi&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;If this answer helps please mark "Accept as Solution"&amp;nbsp;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 15 May 2025 04:08:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693280#M9304</guid>
      <dc:creator>Srisakthi</dc:creator>
      <dc:date>2025-05-15T04:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693746#M9314</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/673617"&gt;@yvaubourg&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/782160"&gt;@Srisakthi&lt;/a&gt;&amp;nbsp;for your replies!&lt;BR /&gt;&lt;BR /&gt;I tried the Python sript you provided&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/782160"&gt;@Srisakthi&lt;/a&gt;&amp;nbsp;but this is not working due to MFA:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nicolas_DHONT_0-1747299436357.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268328i7F739CC39B1139DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nicolas_DHONT_0-1747299436357.png" alt="Nicolas_DHONT_0-1747299436357.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there another way to authenticate (maybe with "Application registration" from Azure Portal) to allow a script to automatically connect (disabling MFA on a user is not a best practice) ?&lt;BR /&gt;&lt;BR /&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 09:00:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693746#M9314</guid>
      <dc:creator>Nicolas_DHONT</dc:creator>
      <dc:date>2025-05-15T09:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693813#M9315</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/801467"&gt;@Nicolas_DHONT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yeah you can try with Service Principal, but few permissions needs to be enabled to use it.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Srisakthi_0-1747300603130.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268338i6222B947DCFF2D74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Srisakthi_0-1747300603130.png" alt="Srisakthi_0-1747300603130.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Srisakthi_1-1747300624907.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268339i97AF13736CA0BE97/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Srisakthi_1-1747300624907.png" alt="Srisakthi_1-1747300624907.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srisakthi&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 09:17:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4693813#M9315</guid>
      <dc:creator>Srisakthi</dc:creator>
      <dc:date>2025-05-15T09:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4695730#M9341</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/801467"&gt;@Nicolas_DHONT&lt;/a&gt;&amp;nbsp;- you can query a lakehouse via an API call by creating a user data function.&amp;nbsp; Below is a script for a UDF that I created which queries a lakehouse and returns a list of tables and their respective schemas.&lt;/P&gt;
&lt;P&gt;You can customize this by editing the alias and SELECT statement sections which I've highlighted in the snip below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jennratten_0-1747390508607.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268712i07EE26361E45CF68/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jennratten_0-1747390508607.png" alt="jennratten_0-1747390508607.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Test the function by clicking the play icon from the function name in the function explorer.&amp;nbsp; Then the Run pane will open on the right and you can click the Run button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jennratten_1-1747390628442.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268713i81F750C363166191/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jennratten_1-1747390628442.png" alt="jennratten_1-1747390628442.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Once you are satisfied with the test result, click Generate invokation code and choose between invoking via Python or a Client and copy the respective script.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jennratten_2-1747390844825.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268716iEBC2A1C9D580E787/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jennratten_2-1747390844825.png" alt="jennratten_2-1747390844825.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will give you the code to copy so you can invoke the UDF externally.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jennratten_3-1747390959597.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1268717iECD2F1D48AB9873A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jennratten_3-1747390959597.png" alt="jennratten_3-1747390959597.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;UDF Script&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import fabric.functions as fn

udf = fn.UserDataFunctions()
# Go to Manage Connections and add a connection to your lakehouse, note the alias
# Replace "Community" with your actual Lakehouse connection alias
@udf.connection(argName="lakehouse", alias="Community")
@udf.function()
def list_all_tables(lakehouse: fn.FabricLakehouseClient) -&amp;gt; list:
    connection = lakehouse.connectToSql()
    cursor = connection.cursor()

    # Query to list all tables in the Lakehouse
    cursor.execute("SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE'")
    
    rows = [x for x in cursor]
    columnNames = [x[0] for x in cursor.description]

    tables = []
    for row in rows:
        table_info = {}
        for col, val in zip(columnNames, row):
            table_info[col] = val
        tables.append(table_info)

    cursor.close()
    connection.close()

    return tables&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 10:23:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4695730#M9341</guid>
      <dc:creator>jennratten</dc:creator>
      <dc:date>2025-05-16T10:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698261#M9383</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/801467"&gt;@Nicolas_DHONT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 10:31:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698261#M9383</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2025-05-19T10:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698416#M9385</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/782160"&gt;@Srisakthi&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;&lt;BR /&gt;I need to check how don the call with a Service Principal (an the app registration) but it looks the good option &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks and best regards,&lt;BR /&gt;Nicolas&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 12:00:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698416#M9385</guid>
      <dc:creator>Nicolas_DHONT</dc:creator>
      <dc:date>2025-05-19T12:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698599#M9392</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/233243"&gt;@jennratten&lt;/a&gt;&amp;nbsp;I will try this way next time !&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 13:19:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698599#M9392</guid>
      <dc:creator>Nicolas_DHONT</dc:creator>
      <dc:date>2025-05-19T13:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select data from Lakehouses via Fabric API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698603#M9393</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Yes, I validated 2 different solutions&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 13:22:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Select-data-from-Lakehouses-via-Fabric-API/m-p/4698603#M9393</guid>
      <dc:creator>Nicolas_DHONT</dc:creator>
      <dc:date>2025-05-19T13:22:38Z</dc:date>
    </item>
  </channel>
</rss>

