<?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: Warehouse connection in user data functions points to lakehouse in same workspace in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4845035#M12775</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Facinating, my fix worked in my tenant, but I agree that there is a bug here. Maybe the bug is tenant dependant and only affecting some users?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd recommend opening a support ticket with Microsoft to raise this as a bug with the product team.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Oct 2025 03:32:14 GMT</pubDate>
    <dc:creator>tayloramy</dc:creator>
    <dc:date>2025-10-08T03:32:14Z</dc:date>
    <item>
      <title>Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844452#M12765</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Defining a user data function in a workspace with lakehouse and warehouse we see the connection always pointing to the lakehouse, even if explicitely selected the warehouse. Creating a connection to warehouse "my_warehouse" and executing the following function returns the name of my lakehouse, not the warehouse.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.connection(alias=&lt;/SPAN&gt;&lt;SPAN&gt;"my_warehouse"&lt;/SPAN&gt;&lt;SPAN&gt;, argName=&lt;/SPAN&gt;&lt;SPAN&gt;"sqlDB"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.function()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;def&lt;/SPAN&gt;&lt;SPAN&gt; whoami(sqlDB: FabricSqlConnection) -&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;str&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;"""Check actual DB + a few objects."""&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; conn = sqlDB.connect()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;with&lt;/SPAN&gt;&lt;SPAN&gt; conn.cursor() &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt;&lt;SPAN&gt; cur:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cur.execute(&lt;/SPAN&gt;&lt;SPAN&gt;"SELECT DB_NAME(), @@VERSION;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db_name, version = cur.fetchone()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;db_name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Is this a known issue?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Oct 2025 12:04:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844452#M12765</guid>
      <dc:creator>Lukas2357</dc:creator>
      <dc:date>2025-10-07T12:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844565#M12768</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you’re seeing usually happens when the UDF’s connection alias is bound to the &lt;STRONG&gt;SQL endpoint of the Lakehouse&lt;/STRONG&gt; instead of the &lt;STRONG&gt;Warehouse&lt;/STRONG&gt;, even if the picker showed the Warehouse name. In practice, FabricSqlConnection can target both Warehouse and Lakehouse SQL endpoints, and a mismatched alias will make DB_NAME() read back the Lakehouse name. (&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/python-programming-model" target="_blank" rel="noopener"&gt;docs: UDF programming model&lt;/A&gt;, &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/connect-to-data-sources" target="_blank" rel="noopener"&gt;docs: Connect to data sources&lt;/A&gt;). There have also been a few community reports of alias mix-ups that look exactly like this (&lt;A href="https://www.reddit.com/r/MicrosoftFabric/comments/1kg1otb/user_data_functions_udf_strange_bug/" target="_blank" rel="noopener"&gt;example thread&lt;/A&gt;).&lt;/P&gt;&lt;H3&gt;Some troubleshooting steps&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Recreate two distinct connections&lt;/STRONG&gt; from the Functions “Manage connections” pane:&lt;UL&gt;&lt;LI&gt;One for the &lt;STRONG&gt;Warehouse&lt;/STRONG&gt; (filter the OneLake Catalog to “Microsoft Fabric → Warehouse” before selecting).&lt;/LI&gt;&lt;LI&gt;One for the &lt;STRONG&gt;Lakehouse SQL endpoint&lt;/STRONG&gt; (if you need it).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Give them &lt;STRONG&gt;visibly different aliases&lt;/STRONG&gt;, e.g. wh_sales_dw and lh_sales_sql.&lt;/LI&gt;&lt;LI&gt;Update your UDF to use the Warehouse alias and type:&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;import fabric.functions as fn
udf = fn.UserDataFunctions()

@udf.connection(alias="wh_sales_dw", argName="sqlDB")
@udf.function()
def whoami(sqlDB: fn.FabricSqlConnection) -&amp;gt; str:
    conn = sqlDB.connect()
    with conn.cursor() as cur:
        cur.execute("SELECT DB_NAME(), @@VERSION;")
        db_name, version = cur.fetchone()
    return db_name&lt;/PRE&gt;&lt;OL&gt;&lt;LI&gt;Re-publish the UDF, then invoke it again. You should now see the Warehouse name.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 13:31:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844565#M12768</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-10-07T13:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844676#M12772</link>
      <description>&lt;P&gt;Thanks for the reply. In fact the reddit thread is describing the exact same issue and it was not solved for several months. I tried your suggested solution, but found the same error. Below you see I tested the function against a lakehouse and warehouse connection and both returned the lakehouse. It seems the selected endpoint and related artifact from the workspace is arbitrary. To me it seems like a bug that needs to be fixed to use data functions properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; fabric.functions &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt;&lt;SPAN&gt; fn&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;udf = fn.UserDataFunctions()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.connection(alias=&lt;/SPAN&gt;&lt;SPAN&gt;"whtest"&lt;/SPAN&gt;&lt;SPAN&gt;, argName=&lt;/SPAN&gt;&lt;SPAN&gt;"sqlDB"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.function()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;def&lt;/SPAN&gt;&lt;SPAN&gt; whoami_wh(sqlDB: fn.FabricSqlConnection) -&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;str&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; conn = sqlDB.connect()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;with&lt;/SPAN&gt;&lt;SPAN&gt; conn.cursor() &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt;&lt;SPAN&gt; cur:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cur.execute(&lt;/SPAN&gt;&lt;SPAN&gt;"SELECT DB_NAME(), @@VERSION;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db_name, version = cur.fetchone()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; db_name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.connection(alias=&lt;/SPAN&gt;&lt;SPAN&gt;"lhtest"&lt;/SPAN&gt;&lt;SPAN&gt;, argName=&lt;/SPAN&gt;&lt;SPAN&gt;"sqlDB"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;@udf&lt;/SPAN&gt;&lt;SPAN&gt;.function()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;def&lt;/SPAN&gt;&lt;SPAN&gt; whoami_lh(sqlDB: fn.FabricSqlConnection) -&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;str&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; conn = sqlDB.connect()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;with&lt;/SPAN&gt;&lt;SPAN&gt; conn.cursor() &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt;&lt;SPAN&gt; cur:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cur.execute(&lt;/SPAN&gt;&lt;SPAN&gt;"SELECT DB_NAME(), @@VERSION;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db_name, version = cur.fetchone()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; db_name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2025-10-07_16h00_15.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1302116i981A1005E8FA717E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2025-10-07_16h00_15.png" alt="2025-10-07_16h00_15.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 15:21:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4844676#M12772</guid>
      <dc:creator>Lukas2357</dc:creator>
      <dc:date>2025-10-07T15:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4845035#M12775</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Facinating, my fix worked in my tenant, but I agree that there is a bug here. Maybe the bug is tenant dependant and only affecting some users?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd recommend opening a support ticket with Microsoft to raise this as a bug with the product team.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 03:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4845035#M12775</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2025-10-08T03:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4845225#M12779</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum and sharing the details and your code snippet. Also, thanks to&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;,&amp;nbsp;for his inputs on this thread.&lt;BR /&gt;&lt;BR /&gt;What you are seeing is a known behaviour in Microsoft Fabric. Even when a warehouse is explicitly selected in the UDF connection, sometimes the function defaults to the Lakehouse SQL endpoint. This happens because the connection alias might still be pointing to the Lakehouse behind the scenes, even if the UI shows your warehouse. That is why DB_NAME() returns the Lakehouse name.&lt;BR /&gt;&lt;BR /&gt;Create separate connections for the Lakehouse and warehouse: Go to the Functions → Manage connections pane. Create one connection for your warehouse and another for the Lakehouse SQL endpoint. Give them clear aliases, e.g., wh_sales_dw for the warehouse.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-start="1355" data-end="1375"&gt;Update Your UDF: Modify your UDF code to use the warehouse alias.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import fabric.functions as fn

udf = fn.UserDataFunctions()

@udf.connection(alias="wh_sales_dw", argName="sqlDB")
@udf.function()
def whoami(sqlDB: fn.FabricSqlConnection) -&amp;gt; str:
    conn = sqlDB.connect()
    with conn.cursor() as cur:
        cur.execute("SELECT DB_NAME(), @@VERSION;")
        db_name, version = cur.fetchone()
    return db_name
&lt;/LI-CODE&gt;
&lt;P&gt;Republish and test: now it should return your warehouse name instead of the Lakehouse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer these links: &lt;BR /&gt;1. &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/connect-to-data-sources" target="_blank"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/connect-to-data-sources&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;2. &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/python-programming-model" target="_blank"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/user-data-functions/python-programming-model&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps get you unblocked! Please keep us posted on the results so we can assist further if needed.&lt;/P&gt;
&lt;P&gt;Thank you for using the Microsoft Fabric Community Forum.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 07:23:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4845225#M12779</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-10-08T07:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4848122#M12866</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Just checking in to see if the issue has been resolved on your end. If the earlier suggestions helped, that’s great to hear! And if you’re still facing challenges, feel free to share more details happy to assist further.&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>Sun, 12 Oct 2025 02:38:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4848122#M12866</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-10-12T02:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Warehouse connection in user data functions points to lakehouse in same workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4850330#M12901</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1368154"&gt;@Lukas2357&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Just wanted to follow up one last time. If the shared guidance worked for you, that’s wonderful hopefully it also helps others looking for similar answers. If there’s anything else you'd like to explore or clarify, don’t hesitate to reach out.&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>Wed, 15 Oct 2025 04:34:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Warehouse-connection-in-user-data-functions-points-to-lakehouse/m-p/4850330#M12901</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-10-15T04:34:21Z</dc:date>
    </item>
  </channel>
</rss>

