<?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>Mon, 14 Sep 2026 22:22:54 GMT</pubDate>
    <dc:creator>ac_dataengineering</dc:creator>
    <dc:date>2026-09-14T22:22:54Z</dc:date>
    <item>
      <title>Approach for automating Dataflow Gen2 connection binding across Dev/Prod?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Approach-for-automating-Dataflow-Gen2-connection-binding-across/m-p/5366781#M17943</link>
      <description>&lt;P&gt;We're deploying Dataflow Gen2 from Dev to Prod via fabric-cicd with all destination Lakehouse IDs and source parameters fully parameterized.&amp;nbsp;Definitions deploy cleanly.&lt;/P&gt;&lt;P&gt;The blocker: every query's data source connection has to be manually reconfigured in the target workspace — "Configure connection" doesn't auto-bind to an existing connection object even when one already exists for that connector, and this has to be repeated per query/table, not once per Dataflow. Docs confirm this is expected ("connections are statically bound... can't be altered using workspace variables or parameterization"), but that leaves genuine automation impossible for Dataflows with many tables (~47 in our case).&lt;/P&gt;&lt;P&gt;And it is even not possible to update connection. It seems that each table has to be created fresh in Prod.&lt;/P&gt;&lt;P&gt;Has anyone found a real workaround — Service Principal-based automation, REST API call to bind connections post-deploy etc.&lt;/P&gt;&lt;P&gt;What's actually working for people running CI/CD from Dev to Prod at scale here?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 19:53:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Approach-for-automating-Dataflow-Gen2-connection-binding-across/m-p/5366781#M17943</guid>
      <dc:creator>lavginqo2</dc:creator>
      <dc:date>2026-09-14T19:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pure Python Notebook: authenticate to Azure DevOps Artifacts using Fabric Workspace Identity</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Pure-Python-Notebook-authenticate-to-Azure-DevOps-Artifacts/m-p/5366778#M17942</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1783442" data-lia-user-login="llueg" class="lia-mention lia-mention-user"&gt;llueg​&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I think you have found a real gap between the current &lt;STRONG&gt;pure Python notebook&lt;/STRONG&gt; experience and the newer Workspace Identity support for Azure Artifacts.&lt;/P&gt;&lt;P&gt;As far as the current documentation goes, I don't see a supported way for a pure Python notebook to directly request an Azure DevOps/Azure Artifacts access token from its Workspace Identity and pass that token to &lt;STRONG&gt;pip&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;The reason is that &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/notebookutils/notebookutils-credentials" target="_blank"&gt;NotebookUtils credential token acquisition&lt;/A&gt; currently documents only &lt;STRONG&gt;storage&lt;/STRONG&gt;, &lt;STRONG&gt;pbi&lt;/STRONG&gt;, &lt;STRONG&gt;keyvault &lt;/STRONG&gt;and &lt;STRONG&gt;kusto &lt;/STRONG&gt;as supported token audiences. Azure DevOps isn't exposed as a documented audience, so I wouldn't rely on passing an Azure DevOps resource ID to &lt;STRONG&gt;getToken()&lt;/STRONG&gt; as an undocumented workaround.&lt;/P&gt;&lt;P&gt;There is, however, a newer PAT-less path that gets very close to what you want. Fabric now supports authenticating an &lt;STRONG&gt;Azure Artifact Feed&lt;/STRONG&gt; connection with the Workspace Identity. The Workspace Identity can be added to the Azure DevOps feed with at least &lt;STRONG&gt;Feed Reader&lt;/STRONG&gt;, and Fabric then uses that authenticated connection when resolving packages in a Fabric Environment.&lt;/P&gt;&lt;P&gt;Microsoft documents that flow under &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/environment-manage-library" target="_blank"&gt;library management for Fabric Environments&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;The limitation for your scenario is that the current &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/using-python-experience-on-notebook" target="_blank"&gt;pure Python notebook documentation&lt;/A&gt; explicitly lists &lt;STRONG&gt;Environment integration as unavailable for Python notebooks&lt;/STRONG&gt;. That Workspace Identity → Azure Artifacts flow therefore currently helps Spark notebooks using Fabric Environments, but it doesn't give a pure Python notebook a token that can be handed directly to &lt;STRONG&gt;pip install --index-url&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;There is also the newer &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/fabric-connection-with-notebook" target="_blank"&gt;Fabric Connection integration for notebooks&lt;/A&gt;, which supports Workspace Identity authentication and is currently in Preview, but I haven't found Microsoft documentation showing an Azure Artifact Feed connection credential being exposed for direct &lt;STRONG&gt;pip &lt;/STRONG&gt;authentication in a pure Python notebook.&lt;/P&gt;&lt;P&gt;So at the moment I would describe it as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Spark notebook + Fabric Environment&lt;/STRONG&gt;: Workspace Identity → Azure Artifacts is supported.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Pure Python notebook + direct pip install&lt;/STRONG&gt;: I don't see a documented Workspace Identity-based Azure DevOps token flow yet.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;For pure Python, your Key Vault-backed PAT remains the documented practical option unless Microsoft extends the Environment/Azure Artifact Feed integration to the Python kernel or exposes Azure DevOps as a supported notebook credential audience.&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>Mon, 14 Sep 2026 19:42:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Pure-Python-Notebook-authenticate-to-Azure-DevOps-Artifacts/m-p/5366778#M17942</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-09-14T19:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: New Browser Tab Opening to Previous or Existing Session</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/New-Browser-Tab-Opening-to-Previous-or-Existing-Session/m-p/5366757#M17941</link>
      <description>&lt;P&gt;This seems to be a "feature" rolled out over the summer and it drives me crazy. We actually need different tabs within the same workspace (dealing with items from different source systems) and the number of tabs takes up too much real estate and can cause notebook connections to go weird. Then I'm jumping through 10 tabs to see where the problem is. Has slowed down me and my teams' productivity.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 18:16:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/New-Browser-Tab-Opening-to-Previous-or-Existing-Session/m-p/5366757#M17941</guid>
      <dc:creator>KentKMishra</dc:creator>
      <dc:date>2026-09-14T18:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQL update... mutation for Fabric SQL DB failing</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/GraphQL-update-mutation-for-Fabric-SQL-DB-failing/m-p/5366677#M17940</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1550082" data-lia-user-login="Kagiyama_yutaka" class="lia-mention lia-mention-user"&gt;Kagiyama_yutaka​&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;the update mutation requires the pk column as the query's first argument so it can identify the row to update. The PK column itself is not updated in the update snippet I posted initially.&amp;nbsp;&lt;BR /&gt;I only send the writable column or am I misreading something?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 13:47:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/GraphQL-update-mutation-for-Fabric-SQL-DB-failing/m-p/5366677#M17940</guid>
      <dc:creator>msturzen</dc:creator>
      <dc:date>2026-09-14T13:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is a table ordinary, or special (= from a shortcut, a system table or materialized lake view table)?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-a-table-ordinary-or-special-from-a-shortcut-a-system-table-or/m-p/5366675#M17939</link>
      <description>&lt;P&gt;Thank you, &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;. Your response is helpful. Hopefully, an easier--and unified--way to get these details will be added in the future. Thanks, again, for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 13:43:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-a-table-ordinary-or-special-from-a-shortcut-a-system-table-or/m-p/5366675#M17939</guid>
      <dc:creator>Ben-Dev</dc:creator>
      <dc:date>2026-09-14T13:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQL update... mutation for Fabric SQL DB failing</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/GraphQL-update-mutation-for-Fabric-SQL-DB-failing/m-p/5366672#M17938</link>
      <description>&lt;P&gt;Sorry for being unresponsive for the last 2 weeks. Had to take a few days off.&amp;nbsp;&lt;BR /&gt;I raised a support ticket that is currently being worked on. I'll post updates asap.&amp;nbsp;&lt;BR /&gt;Best&lt;BR /&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 13:38:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/GraphQL-update-mutation-for-Fabric-SQL-DB-failing/m-p/5366672#M17938</guid>
      <dc:creator>msturzen</dc:creator>
      <dc:date>2026-09-14T13:38:30Z</dc:date>
    </item>
    <item>
      <title>From On-Premises SQL Server to Microsoft Fabric with a Metadata-Driven Medallion Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/From-On-Premises-SQL-Server-to-Microsoft-Fabric-with-a-Metadata/m-p/5366641#M17937</link>
      <description>&lt;P&gt;In this demo, I use DataCoolie to move WideWorldImporters data from an on-premises SQL Server into Microsoft Fabric. The pipeline is driven by one &lt;STRONG&gt;&lt;SPAN class="lia-text-color-21"&gt;metadata.json&lt;/SPAN&gt;&lt;/STRONG&gt; file and follows the Bronze, Silver, and Gold pattern.&lt;/P&gt;&lt;P&gt;The focus here is the Fabric execution flow, not the earlier development process.&lt;/P&gt;&lt;P&gt;The complete sample is available in the &lt;A href="https://github.com/datacoolie/dc-demo-fabric" target="_blank"&gt;datacoolie/dc-demo-fabric repository&lt;/A&gt;.&lt;/P&gt;&lt;H2&gt;Architecture&lt;/H2&gt;&lt;P&gt;The SQL Server remains on-premises, so ingestion runs from an external Polars runner. Downstream processing runs inside Fabric:&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="border-width: 1px;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Stage&lt;/th&gt;&lt;th&gt;Runtime&lt;/th&gt;&lt;th&gt;Output&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;source2bronze&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;On-premises Polars&lt;/td&gt;&lt;td&gt;Parquet in &lt;STRONG&gt;Files/bronze&lt;/STRONG&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;bronze2silver&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;Fabric Python 3.12 notebook with Polars and delta-rs&lt;/td&gt;&lt;td&gt;Delta tables in &lt;STRONG&gt;silver&lt;/STRONG&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;STRONG&gt;silver2gold&lt;/STRONG&gt;&lt;/td&gt;&lt;td&gt;Fabric Spark notebook&lt;/td&gt;&lt;td&gt;Delta tables in &lt;STRONG&gt;gold&lt;/STRONG&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;colgroup&gt;&lt;col style="width: 33.33%" /&gt;&lt;col style="width: 33.33%" /&gt;&lt;col style="width: 33.33%" /&gt;&lt;/colgroup&gt;&lt;/table&gt;&lt;/DIV&gt;&lt;img /&gt;&lt;P&gt;The workspace uses two Lakehouses:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;lh_wwi_medallion_demo&lt;/STRONG&gt;&lt;BR /&gt;├── Files/bronze&lt;BR /&gt;├── Tables/silver&lt;BR /&gt;└── Tables/gold&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;lh_etl&lt;/STRONG&gt;&lt;BR /&gt;└── Files/control/test-fabric&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ├── metadata/current/metadata.json&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ├── logs&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; └── watermarks&lt;/P&gt;&lt;P&gt;This keeps operational state separate from business data while allowing every runtime to use the same metadata and watermarks.&lt;/P&gt;&lt;img /&gt;&lt;H2&gt;One metadata file, three stages&lt;/H2&gt;&lt;P&gt;The final metadata contains four connections, 68 dataflows, and shared schema hints. Each dataflow declares its stage, source, destination, load type, watermark, merge keys, or SQL query. The runner remains generic: it reads this file and receives only the stage name it should execute.&lt;/P&gt;&lt;P&gt;The Fabric environment maps logical connections to:&lt;/P&gt;&lt;P&gt;bronze_parquet → Files/bronze&amp;nbsp;&lt;BR /&gt;silver_delta → Tables/silver&lt;BR /&gt;gold_delta → Tables/gold&lt;/P&gt;&lt;img /&gt;&lt;P&gt;Note: An AI agent will assist in generating the metadata.json file.&lt;/P&gt;&lt;H2&gt;Uploading the artifacts with Fabric CLI&lt;/H2&gt;&lt;P&gt;After creating the two Lakehouses, install the Fabric CLI, authenticate, upload the metadata, and import the two notebooks:&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;pip install --upgrade ms-fabric-cli fab auth login  $workspace = 'wwi_medallion_demo_test_fabric.Workspace' $etl = "$workspace/lh_etl.Lakehouse"  fab mkdir "$etl/Files/control/test-fabric/metadata/current" fab cp '.\metadata.json' `   "$etl/Files/control/test-fabric/metadata/current/metadata.json" -f  fab import "$workspace/run_fabric_polars.Notebook" `   -i '.\runners\run_fabric_polars.ipynb' --format ipynb -f fab import "$workspace/run_fabric_spark.Notebook" `   -i '.\runners\run_fabric_spark.ipynb' --format ipynb -f&lt;/LI-CODE&gt;&lt;H2&gt;Stage 1: SQL Server to Bronze&lt;/H2&gt;&lt;P&gt;The on-premises runner reads 31 business tables and appends raw Parquet batches to OneLake. Every table has a watermark: ValidFrom, LastEditedWhen, or VehicleTemperatureID. Timestamp-based flows reread a one-day overlap to reduce the chance of missing late records.&lt;/P&gt;&lt;P&gt;Bronze files are organized by ingestion date:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Files/bronze/&amp;lt;schema&amp;gt;__&amp;lt;table&amp;gt;/YYYY/MM/DD/&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This stage still runs on-premises because it requires SQL Server connectivity:&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;$control = 'abfss://wwi_medallion_demo_test_fabric@onelake.dfs.fabric.microsoft.com/lh_etl.Lakehouse/Files/control/test-fabric'  python '.\runners\run_fabric_polars_azure_sdk.py' `   --metadata-path "$control/metadata/current/metadata.json" `   --watermark-base-path "$control/watermarks" `   --base-log-path "$control/logs" `   --stage source2bronze --max-workers 4&lt;/LI-CODE&gt;&lt;img /&gt;&lt;H2&gt;Stage 2: Bronze to Silver&lt;/H2&gt;&lt;P&gt;A Fabric Python notebook runs this stage with Polars and delta-rs, without Spark. It reads new Bronze files through &lt;STRONG&gt;__file_modification_time&lt;/STRONG&gt;, removes duplicate source keys, and performs a Delta &lt;STRONG&gt;merge_upsert &lt;/STRONG&gt;for all 31 tables.&lt;/P&gt;&lt;P&gt;The result is a current-state Silver replica while Bronze keeps the raw append history.&lt;/P&gt;&lt;P&gt;After Bronze is ready, start the notebook with Fabric CLI. The Lakehouse configuration binds the notebook to &lt;STRONG&gt;lh_wwi_medallion_demo&lt;/STRONG&gt;:&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;$lakehouseConfig = '{"defaultLakehouse":{"name":"lh_wwi_medallion_demo","id":"&amp;lt;lakehouse-id&amp;gt;","workspaceId":"&amp;lt;workspace-id&amp;gt;"}}'  fab job run "$workspace/run_fabric_polars.Notebook" `   -P "STAGE:string=bronze2silver,_inlineInstallationEnabled:bool=true" `   -C $lakehouseConfig --timeout 3600&lt;/LI-CODE&gt;&lt;img /&gt;&lt;H2&gt;Stage 3: Silver to Gold&lt;/H2&gt;&lt;P&gt;The final stage runs in a Fabric Spark notebook. SQL queries stored in metadata read two-level names such as &lt;STRONG&gt;silver.Sales__InvoiceLines&lt;/STRONG&gt; and create six Gold products:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;DimDate&lt;/LI&gt;&lt;LI&gt;DimGeography&lt;/LI&gt;&lt;LI&gt;DimProduct&lt;/LI&gt;&lt;LI&gt;DimPerson&lt;/LI&gt;&lt;LI&gt;DimDeliveryMethod&lt;/LI&gt;&lt;LI&gt;FactInvoiceLineProfitability&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The source instance had no customer data, so customer-dependent Gold models were intentionally excluded.&lt;/P&gt;&lt;P&gt;Run Gold only after the Silver notebook succeeds:&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;fab job run "$workspace/run_fabric_spark.Notebook" `   -P "STAGE:string=silver2gold,_inlineInstallationEnabled:bool=true" `   -C $lakehouseConfig --timeout 3600&lt;/LI-CODE&gt;&lt;img /&gt;&lt;H2&gt;Monitoring the complete flow&lt;/H2&gt;&lt;P&gt;Fabric Monitoring shows notebook status, duration, and execution details. DataCoolie writes dataflow-level logs and watermarks to &lt;STRONG&gt;lh_etl&lt;/STRONG&gt;, allowing DataCoolie Studio to display metadata, assets, lineage, jobs, and individual dataflow runs across all three stages.&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;H2&gt;Result&lt;/H2&gt;&lt;P&gt;The completed pipeline has 31 incremental Bronze flows, 31 key-merged Silver tables, and six Gold products. The runner stays generic; metadata defines the tables, watermarks, merge keys, paths, and SQL transformations.&lt;/P&gt;&lt;P&gt;This separation makes the pipeline easier to extend and keeps the hybrid on-premises/Fabric workflow observable as one system.&lt;/P&gt;&lt;H2&gt;Further reading&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-access-api" target="_blank"&gt;Connect to Microsoft OneLake&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-schemas" target="_blank"&gt;Lakehouse schemas in Microsoft Fabric&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/fabric/articles/fabric-command-line-interface" target="_blank"&gt;Microsoft Fabric command-line interface&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 14 Sep 2026 10:48:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/From-On-Premises-SQL-Server-to-Microsoft-Fabric-with-a-Metadata/m-p/5366641#M17937</guid>
      <dc:creator>ezalor</dc:creator>
      <dc:date>2026-09-14T10:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: DataFlow Gen2 Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/DataFlow-Gen2-Issue/m-p/5366462#M17936</link>
      <description>&lt;P&gt;You are likely correct that this is a firewall issue. The error&amp;nbsp;The underlying connection was closed: An unexpected error occurred on a send&amp;nbsp;typically indicates that the request from the Dataflow service is being blocked before it can complete the handshake with the Fabric Lakehouse API.&lt;/P&gt;&lt;P&gt;Because you can access the Lakehouse from Notebooks (which run directly within the Fabric environment) but&amp;nbsp;&lt;EM&gt;cannot&lt;/EM&gt;&amp;nbsp;from Dataflow Gen2 (which may route metadata or data traffic differently via the on-premises data gateway or specific outbound IP ranges), it strongly suggests a&amp;nbsp;one-way firewall rule&amp;nbsp;is currently in place.&lt;/P&gt;&lt;P&gt;To resolve this, the firewall configuration must be changed to allow&amp;nbsp;two-way traffic. It is not enough to simply allow outbound traffic from your network; the connection requires a request-and-response cycle. The firewall must explicitly permit the return traffic from the Power BI/Fabric API endpoints back to the Dataflow service or the data gateway.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 22:43:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/DataFlow-Gen2-Issue/m-p/5366462#M17936</guid>
      <dc:creator>EduardoCastro</dc:creator>
      <dc:date>2026-09-12T22:43:37Z</dc:date>
    </item>
    <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>Pure Python Notebook: authenticate to Azure DevOps Artifacts using Fabric Workspace Identity</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Pure-Python-Notebook-authenticate-to-Azure-DevOps-Artifacts/m-p/5366418#M17929</link>
      <description>&lt;P&gt;Can a Pure Python Fabric notebook running under a Workspace Identity obtain an Azure DevOps access token so that `pip install --index-url ...` can authenticate without a PAT?&lt;/P&gt;&lt;P&gt;It would be very nice if we could use the Workspace Identity to authenticate directly against a DevOps Feed in order to pull dependencies, as that would allow DevOps to directly target Feed-permissions for &lt;EM&gt;that&lt;/EM&gt; Workspace (in particular, `Feed Reader`). For Spark Notebooks, we can use a Connection to do that, but for Pure Python Notebooks I can't find a documented way.&lt;/P&gt;&lt;P&gt;At the end of the day, one needs a token to pass to `pip` in order to bootstrap the notebook's runtime environment from the Feed, but as far as I can see there is no documented way to generate that token from the Workspace Identity. Currently, I'm using a keyvault'ed PAT. However, while this is fine-ish on the Fabric-side, it requires a dedicated Identity on the DevOps side, which I'd like to avoid.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2026 12:47:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Pure-Python-Notebook-authenticate-to-Azure-DevOps-Artifacts/m-p/5366418#M17929</guid>
      <dc:creator>llueg</dc:creator>
      <dc:date>2026-09-12T12:47:07Z</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>
  </channel>
</rss>

