<?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>All Data Engineering posts</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/bd-p/ac_dataengineering</link>
    <description>All Data Engineering posts</description>
    <pubDate>Sat, 12 Sep 2026 19:09:31 GMT</pubDate>
    <dc:creator>ac_dataengineering</dc:creator>
    <dc:date>2026-09-12T19:09:31Z</dc:date>
    <item>
      <title>Re: DataFlow Gen2 Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/DataFlow-Gen2-Issue/m-p/5366450#M17935</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1775267" data-lia-user-login="LUISS252" class="lia-mention lia-mention-user"&gt;LUISS252​&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;One thing I would separate here is the Pipeline network path from the Dataflow Gen2 network path.&lt;/P&gt;&lt;P&gt;The fact that your Pipeline Copy activity started working after the firewall maintenance is useful, but it does not necessarily prove that every endpoint required by Dataflow Gen2 is now reachable.&lt;/P&gt;&lt;P&gt;For an on-premises gateway, Dataflow Gen2 can also need access to OneLake and the staging Lakehouse endpoints, depending on whether staging, referenced queries or Fast Copy are involved.&lt;/P&gt;&lt;P&gt;I would also not focus too much on the missing &lt;STRONG&gt;Azure connections&lt;/STRONG&gt; setting. That setting is mainly for workspace-level Azure storage / Log Analytics configuration and is not normally required just to write to a standard Fabric Lakehouse.&lt;/P&gt;&lt;P&gt;I would try one very small isolation test:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;one SQL Server query&lt;/LI&gt;&lt;LI&gt;one Lakehouse destination&lt;/LI&gt;&lt;LI&gt;no referenced queries&lt;/LI&gt;&lt;LI&gt;staging disabled&lt;/LI&gt;&lt;LI&gt;Fast Copy disabled&lt;/LI&gt;&lt;LI&gt;only a few rows&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;Microsoft documents that in that specific pattern, Dataflow Gen2 should not require the staging-Lakehouse connection over port 1433.&lt;/P&gt;&lt;P&gt;If that minimal dataflow succeeds, I would then re-enable staging / Fast Copy or add the query references one at a time. That should tell you exactly when the failure appears.&lt;/P&gt;&lt;P&gt;If the minimal version still fails at the Lakehouse destination, I would treat this as a destination-validation / network-path issue rather than a SQL Server source problem, especially since your source preview succeeds and notebooks can already write to the same Lakehouse.&lt;/P&gt;&lt;P&gt;The current Dataflow Gen2 gateway guidance is particularly useful here because it lists the different endpoint requirements for staging and Lakehouse destination scenarios.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;AI-assisted drafting:&lt;/STRONG&gt; AI was used to help structure and phrase this response. I reviewed and validated the technical content before posting.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 12 Sep 2026 18:48:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/DataFlow-Gen2-Issue/m-p/5366450#M17935</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-09-12T18:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Bronze data contracts for REST/API sources — workaround for Get Metadata's connector gap</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Bronze-data-contracts-for-REST-API-sources-workaround-for-Get/m-p/5366449#M17934</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760485" data-lia-user-login="damo_mac85" class="lia-mention lia-mention-user"&gt;damo_mac85​&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I think your workaround is reasonable, and I don't think you're missing a native Get Metadata option here.&lt;/P&gt;&lt;P&gt;The current &lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/connector-rest-overview" target="_blank"&gt;Fabric REST connector&lt;/A&gt; lists Pipeline Copy activity as its supported pipeline capability, but it does not currently list Get Metadata.&lt;/P&gt;&lt;P&gt;One thing I would consider changing is where the contract validation happens.&lt;/P&gt;&lt;P&gt;If Bronze is intended to preserve the source payload, I would lean toward:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;REST -&amp;gt; raw JSON -&amp;gt; schema/contract validation -&amp;gt; Parquet/Delta&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;rather than:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;REST -&amp;gt; Parquet -&amp;gt; inspect Parquet schema&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The reason is that if the API introduces a structural change that prevents the response from being serialized into your expected Parquet shape, the Copy could fail before your notebook ever gets the opportunity to compare schemas. Keeping the raw JSON first gives you an immutable payload to inspect and replay.&lt;/P&gt;&lt;P&gt;For a pre-flight check, Fabric's &lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/web-activity" target="_blank"&gt;Web activity&lt;/A&gt; can call a REST endpoint before the Copy activity.&lt;/P&gt;&lt;P&gt;If the API exposes an OpenAPI/Swagger or dedicated schema endpoint, I would use that as the contract source where possible. Otherwise, a small sample call could be used to inspect the returned JSON before starting the full extraction.&lt;/P&gt;&lt;P&gt;I would just be careful about treating a sample response as the complete schema, since optional fields may not appear in every payload.&lt;/P&gt;&lt;P&gt;So personally I would use:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Web/schema or sample check -&amp;gt; contract validation -&amp;gt; full raw landing -&amp;gt; typed promotion&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;and still validate the landed payload as a second guard before promoting it to Delta.&lt;/P&gt;&lt;P&gt;I also couldn't find a currently published Fabric roadmap item for adding REST support to Get Metadata, so I wouldn't design around that arriving at a particular time.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;AI-assisted drafting:&lt;/STRONG&gt; AI was used to help structure and phrase this response. I reviewed and validated the technical content before posting.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 12 Sep 2026 18:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Bronze-data-contracts-for-REST-API-sources-workaround-for-Get/m-p/5366449#M17934</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-09-12T18:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Business Central Data to Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366446#M17933</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="795606" data-lia-user-login="Saum02" class="lia-mention lia-mention-user"&gt;Saum02​&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;If this is &lt;STRONG&gt;Business Central Online&lt;/STRONG&gt;, I would not build the Fabric solution around direct access to the underlying SQL database.&lt;/P&gt;&lt;P&gt;Microsoft's current &lt;A href="https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/integration-overview" target="_blank"&gt;Business Central integration guidance&lt;/A&gt; recommends using the REST API stack for integrations rather than treating the SaaS database as a directly accessible SQL source.&lt;/P&gt;&lt;P&gt;On the Fabric side, there are a few options worth looking at:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Fabric currently has a &lt;STRONG&gt;Dynamics 365 Business Central connector&lt;/STRONG&gt; available as a Dataflow Gen2 source.&lt;/LI&gt;&lt;LI&gt;For more controlled/custom extraction, the standard &lt;A href="https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/webservices/api-overview" target="_blank"&gt;Business Central REST APIs&lt;/A&gt; are still the preferred interface.&lt;/LI&gt;&lt;LI&gt;There is also a newer option called &lt;STRONG&gt;BC2Fab&lt;/STRONG&gt;, which Microsoft highlighted in the Fabric What's New updates. It is a partner Fabric workload that replicates Business Central data into OneLake using Open Mirroring and incremental change detection, so it may be worth evaluating if your goal is ongoing analytical replication rather than repeatedly extracting through APIs.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;If this is &lt;STRONG&gt;Business Central on-premises&lt;/STRONG&gt;, then direct SQL access is technically another option because you control the underlying SQL Server. I would still compare that against the API approach before coupling your Fabric model directly to the physical BC database schema.&lt;/P&gt;&lt;P&gt;So the first question I would ask is whether your environment is &lt;STRONG&gt;Business Central Online or on-premises&lt;/STRONG&gt;, and roughly how much data / how many tables you need to bring into Fabric.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;AI-assisted drafting:&lt;/STRONG&gt; AI was used to help structure and phrase this response. I reviewed and validated the technical content before posting.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 12 Sep 2026 17:35:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366446#M17933</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-09-12T17:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint Shortcut showing no Content</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366442#M17932</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256​&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;That extra URL helps quite a lot.&lt;/P&gt;&lt;P&gt;I would not move the files into &lt;STRONG&gt;Shared Documents &lt;/STRONG&gt;yet. Microsoft's current &lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/shortcuts/create-onedrive-sharepoint-shortcut" target="_blank"&gt;OneDrive/SharePoint shortcut documentation&lt;/A&gt; does not state that shortcuts are limited to the default Documents library. In fact, Microsoft recommends creating the shortcut at the most specific folder level rather than at the document-library root.&lt;/P&gt;&lt;P&gt;From the URL you posted, it looks like:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;BIA &lt;/STRONG&gt;is the SharePoint site&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Operations &lt;/STRONG&gt;is the display name of the document library&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Ops &lt;/STRONG&gt;is probably the library's internal URL name&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;PowerBI Data/Output &lt;/STRONG&gt;is the folder you actually want&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;So the target path appears to be something like:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;/sites/BIA/Ops/PowerBI Data/Output&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The fact that the Fabric picker only exposes &lt;STRONG&gt;Shared Documents &lt;/STRONG&gt;therefore looks more like a library-enumeration issue than proof that your custom library is unsupported.&lt;/P&gt;&lt;P&gt;One useful isolation test would be to create a fresh connection against the exact site URL:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;A class="lia-external-url" href="https://companyname.sharepoint.com/sites/BIA" target="_blank"&gt;https://companyname.sharepoint.com/sites/BIA&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;using the same organizational account that can browse the Ops library in SharePoint, then check whether Ops appears in the shortcut browser.&lt;/P&gt;&lt;P&gt;If it still only shows &lt;STRONG&gt;Shared Documents&lt;/STRONG&gt;, I would capture that as the repro.&lt;/P&gt;&lt;P&gt;There is also a &lt;A href="https://learn.microsoft.com/en-us/rest/api/fabric/core/onelake-shortcuts/create-shortcut" target="_blank"&gt;OneLake Shortcuts REST API&lt;/A&gt; where a SharePoint shortcut is represented by a &lt;STRONG&gt;location &lt;/STRONG&gt;and &lt;STRONG&gt;subpath&lt;/STRONG&gt;. That may be worth testing as a workaround because the API lets you specify the SharePoint subpath directly rather than relying on the folder picker.&lt;/P&gt;&lt;P&gt;I would use the library's URL/internal name (&lt;STRONG&gt;Ops&lt;/STRONG&gt;) rather than its display name (&lt;STRONG&gt;Operations&lt;/STRONG&gt;) when testing the path.&lt;/P&gt;&lt;P&gt;Also confirm that &lt;STRONG&gt;BIA &lt;/STRONG&gt;is a normal SharePoint site rather than a subsite or hub site, because Microsoft currently lists SharePoint subsites and hub sites as unsupported for OneLake shortcuts.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;AI-assisted drafting:&lt;/STRONG&gt; AI was used to help structure and phrase this response. I reviewed and validated the technical content before posting.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 12 Sep 2026 16:54:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366442#M17932</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-09-12T16:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Business Central Data to Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366433#M17931</link>
      <description>&lt;P&gt;You cannot directly access the underlying database&amp;nbsp;&lt;BR /&gt;similar thread : &lt;A href="https://community.dynamics.com/forums/thread/details/?threadid=3235d2a9-f2ad-f111-aaac-3833c5e85c0e" target="_blank"&gt;Accessing BC Data&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 14:52:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366433#M17931</guid>
      <dc:creator>NandanHegde</dc:creator>
      <dc:date>2026-09-12T14:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Business Central Data to Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366430#M17930</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="795606" data-lia-user-login="Saum02" class="lia-mention lia-mention-user"&gt;Saum02​&lt;/a&gt;,&lt;BR /&gt;If you're on BC Online, I will look at the Business Central APIs first rather than building the Fabric connection around the underlying SQL database.&lt;/P&gt;
&lt;P&gt;Microsoft recommends the REST API stack for Business Central integrations.For BC Online, I will start with the Business Central APIs rather than building the Fabric solution around the underlying SQL database.&lt;/P&gt;
&lt;P&gt;If this is an on-premises deployment, SQL access is another route to consider, depending on what you need to extract.&lt;/P&gt;
&lt;P&gt;Is your BC environment Online or on-premises?&lt;/P&gt;
&lt;P&gt;Microsoft docs:&lt;BR /&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/integration-overview" target="_blank"&gt;Integration overview for Business Central (for architects and developers)&lt;/A&gt;&lt;BR /&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/dynamics365/business-central/admin-fabric" target="_blank"&gt;Introduction to Microsoft Fabric and Business Central&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 14:17:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366430#M17930</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2026-09-12T14:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint Shortcut showing no Content</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366410#M17928</link>
      <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256​&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;this is usually one of these:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Delegated vs. app permissions&lt;/STRONG&gt; – If your SharePoint connection is using an app-only/service principal auth method rather than your own delegated login, it can browse the site and see the folder structure but fail to enumerate files if permissions weren't explicitly granted at the library level, not just the site level.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Broken/synced files showing as empty&lt;/STRONG&gt; – If the "Shared Documents" folder has files synced via OneDrive client or has some in a "pending" state, the shortcut browser sometimes shows nothing even though the web UI displays content, this is a caching mismatch between SharePoint's Graph API response and what you see in browser.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;URL trailing slash or casing&lt;/STRONG&gt; – Since you're using the sites/sitename pattern, double check there's no trailing slash and the site name casing matches exactly. Fabric's shortcut connector can silently fail to traverse if there's a mismatch.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Folder-level unique permissions&lt;/STRONG&gt; – If someone broke inheritance on subfolders inside Shared Documents (common in larger orgs), the connector account may see the parent folder exists but can't read into it, this shows as "No Content" rather than an access-denied error, which is misleading.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Fastest way to isolate it: try creating the shortcut against a brand new, simple test folder with no nested subfolders or broken permissions. If that works, it confirms it's a permissions/inheritance issue on your actual folder, not a connector bug.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 10:13:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366410#M17928</guid>
      <dc:creator>DreamITLearn</dc:creator>
      <dc:date>2026-09-12T10:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric SQL Database vs Warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-SQL-Database-vs-Warehouse/m-p/5366347#M17927</link>
      <description>&lt;P&gt;Based on the requirements for building a metadata-driven ETL framework in Fabric, the Fabric SQL Database is the more appropriate choice for the metadata storage layer.&amp;nbsp; It is better suited for OLTP (transactional) needs, while the Warehouse is specifically designed for OLAP analytics. Metadata and logs are OLTP — constant small inserts, updates (status flags, watermarks), and deletes.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 20:32:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-SQL-Database-vs-Warehouse/m-p/5366347#M17927</guid>
      <dc:creator>EduardoCastro</dc:creator>
      <dc:date>2026-09-11T20:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint Shortcut showing no Content</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366291#M17926</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="819528" data-lia-user-login="v-aatheeque" class="lia-mention lia-mention-user"&gt;v-aatheeque​&lt;/a&gt;&amp;nbsp; you might have missed my comment yesterday. Sorry seems that i didn't reply to you but placed my comment as a general reply.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 13:19:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366291#M17926</guid>
      <dc:creator>mkjit256</dc:creator>
      <dc:date>2026-09-11T13:19:03Z</dc:date>
    </item>
    <item>
      <title>Business Central Data to Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366271#M17925</link>
      <description>&lt;P&gt;Hii All,&lt;/P&gt;&lt;P&gt;Has anyone explored the BC connection to it's underlying SQL database? Is there limitation to this approach? I need to get data from BC to fabric, is SQL database of BC worth exploring?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 11:18:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5366271#M17925</guid>
      <dc:creator>Saum02</dc:creator>
      <dc:date>2026-09-11T11:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint Shortcut showing no Content</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366255#M17924</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256​&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Have you had a chance to look through the responses shared earlier? If anything is still unclear, we’ll be happy to provide additional support.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 10:38:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SharePoint-Shortcut-showing-no-Content/m-p/5366255#M17924</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-09-11T10:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices (?) for invoking Notebooks through Notebooks</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-Practices-for-invoking-Notebooks-through-Notebooks/m-p/5366253#M17923</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1358029" data-lia-user-login="T-Eichinger" class="lia-mention lia-mention-user"&gt;T-Eichinger​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for the response and confirming that the issue is resolved now. Thank you for being part of Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;BR /&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 10:34:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-Practices-for-invoking-Notebooks-through-Notebooks/m-p/5366253#M17923</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-09-11T10:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric SQL Database vs Warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-SQL-Database-vs-Warehouse/m-p/5366250#M17922</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="840694" data-lia-user-login="VaibhavTiwari" class="lia-mention lia-mention-user"&gt;VaibhavTiwari​&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Have you had a chance to look through the responses shared earlier? If anything is still unclear, we’ll be happy to provide additional support.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 10:29:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-SQL-Database-vs-Warehouse/m-p/5366250#M17922</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-09-11T10:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: GPU based SQL - Who is excited ?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/GPU-based-SQL-Who-is-excited/m-p/5366197#M17921</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="822177" data-lia-user-login="ipkus" class="lia-mention lia-mention-user"&gt;ipkus​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Just following up to check if you had a chance to review the information provided. Please let us know if you have any questions.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 06:30:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/GPU-based-SQL-Who-is-excited/m-p/5366197#M17921</guid>
      <dc:creator>v-abhinavmu</dc:creator>
      <dc:date>2026-09-11T06:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: FTL4 Trial Spark failing - InvalidRequestClusterFromFabricDenyList - Cluster Cancelled before Ready</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/FTL4-Trial-Spark-failing-InvalidRequestClusterFromFabricDenyList/m-p/5366196#M17920</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1779098" data-lia-user-login="pritwade" class="lia-mention lia-mention-user"&gt;pritwade​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for testing on a separate trial capacity. Since spark also fails in a new workspace and now reports session personalization failure with Livy ending as dead, this points to a fabric spark backend provisioning issue rather than notebook or pool configuration.&lt;/P&gt;
&lt;P&gt;There is no customer side fix for this. Since you are unable to open a support request from the Trial, please ask your tenant’s Fabric/Microsoft 365 administrator to open a support case through the Fabric Support Center, including the Trace ID, Workspace ID, Pool ID, region, timestamp, and both error messages so the spark backend team can investigate.&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://msit.powerbi.com/admin-portal/supportCenter" target="_blank"&gt;https://msit.powerbi.com/admin-portal/supportCenter&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank"&gt;Create a Fabric and Power BI Support Ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;BR /&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 06:30:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/FTL4-Trial-Spark-failing-InvalidRequestClusterFromFabricDenyList/m-p/5366196#M17920</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-09-11T06:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Current or upcoming DP-700 exam vouchers</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Current-or-upcoming-DP-700-exam-vouchers/m-p/5366186#M17919</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1779494" data-lia-user-login="UshaSriG" class="lia-mention lia-mention-user"&gt;UshaSriG​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 06:18:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Current-or-upcoming-DP-700-exam-vouchers/m-p/5366186#M17919</guid>
      <dc:creator>v-abhinavmu</dc:creator>
      <dc:date>2026-09-11T06:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Background CU used in Fabric Capacity Metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Background-CU-used-in-Fabric-Capacity-Metrics/m-p/5366161#M17918</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1781640" data-lia-user-login="dinhhoa" class="lia-mention lia-mention-user"&gt;dinhhoa​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Have you had a chance to review the solution we shared earlier? If the issue persists, feel free to reply so we can help further.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 05:08:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Background-CU-used-in-Fabric-Capacity-Metrics/m-p/5366161#M17918</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2026-09-11T05:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Copy Activity fails in Query mode but succeeds in Table mode through an on-premises gateway</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5366142#M17917</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ​&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Thanks for your response. The SQL Query does actually run and I can preview it next to the box where the TSQL query is being populated.&lt;/P&gt;&lt;P&gt;Regarding the table vs Query , both are using the same connection and the table option work from both Lakehouse type connection and SQL end point connection ,&amp;nbsp; yet both fail on the TSQL option.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 01:05:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5366142#M17917</guid>
      <dc:creator>alisaleh</dc:creator>
      <dc:date>2026-09-11T01:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bronze data contracts for REST/API sources — workaround for Get Metadata's connector gap</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Bronze-data-contracts-for-REST-API-sources-workaround-for-Get/m-p/5366131#M17916</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760485" data-lia-user-login="damo_mac85" class="lia-mention lia-mention-user"&gt;damo_mac85​&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I would probably do if running data sources from REST API is they typically get returned as JSON files. I would then store the JSON file. In the file section of the Lakehouse and then do a schema comparison. That way if it passes then simply take the JSON file and write it directly to the delta table.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 22:46:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Bronze-data-contracts-for-REST-API-sources-workaround-for-Get/m-p/5366131#M17916</guid>
      <dc:creator>GilbertQ</dc:creator>
      <dc:date>2026-09-10T22:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Copy Activity fails in Query mode but succeeds in Table mode through an on-premises gateway</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5366130#M17915</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="374387" data-lia-user-login="alisaleh" class="lia-mention lia-mention-user"&gt;alisaleh​&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From my understanding, when using a query it is using the SQL endpoint which is different to the table which is using the table directly. What I would recommend doing is to take your query and run it by the SQL endpoint to make sure it runs successfully and there are no issues. Once that is done, I would then make sure to reconfigure your copy activity using a Sequel server source and the SQL endpoint details to see if that works.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 22:45:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5366130#M17915</guid>
      <dc:creator>GilbertQ</dc:creator>
      <dc:date>2026-09-10T22:45:19Z</dc:date>
    </item>
  </channel>
</rss>

