<?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>Fri, 18 Sep 2026 11:14:12 GMT</pubDate>
    <dc:creator>ac_dataengineering</dc:creator>
    <dc:date>2026-09-18T11:14:12Z</dc:date>
    <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/5367740#M17996</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;&amp;nbsp;&lt;BR /&gt;We would like to inquire whether have you got the chance to check the solutions provided by other users in community to resolve the issue. We hope the information provided helps to clear the query. Should you have any further queries, kindly feel free to contact the Microsoft Fabric community.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2026 11:01:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Pure-Python-Notebook-authenticate-to-Azure-DevOps-Artifacts/m-p/5367740#M17996</guid>
      <dc:creator>v-csrikanth</dc:creator>
      <dc:date>2026-09-18T11:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Storing and parsing HL7 data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367726#M17995</link>
      <description>&lt;P&gt;Bring in all fields by parsing with |, grab and fill down each Message ID and segment code, make the parsed values a list type, then into JSON, so you have a column containing the values as JSON text for that message ID and segment. The values compress efficiently, and there’s your base ingestion table. Now your ETL query can easily extract values and zip them to a list of field names.&amp;nbsp;&lt;/P&gt;&lt;P&gt;—Nate&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2026 10:51:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367726#M17995</guid>
      <dc:creator>nathancwatkins</dc:creator>
      <dc:date>2026-09-18T10:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: 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/5367673#M17994</link>
      <description>&lt;P&gt;I think my current development direction aligns with this article. The areas I'm still lacking are data quality and AI self-healing. Other than that, I've already covered the AI Agent development part using skills to guide metadata setup. You can take a look at the video to evaluate: &lt;A href="https://www.youtube.com/watch?v=L9ejQf9tYAE" target="_blank"&gt;Build a Medallion Data Pipeline with DataCoolie + AI | AWS, Fabric &amp;amp; Databricks&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2026 06:22:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/From-On-Premises-SQL-Server-to-Microsoft-Fabric-with-a-Metadata/m-p/5367673#M17994</guid>
      <dc:creator>ezalor</dc:creator>
      <dc:date>2026-09-18T06:22:46Z</dc:date>
    </item>
    <item>
      <title>Optimising Fabric Capacity Usage</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Optimising-Fabric-Capacity-Usage/m-p/5367671#M17993</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Due to the recent changes in Fabric capacity metering, I've been spending quite a bit of time trying to optimise our CU consumption. The challenge I've run into is that it's difficult to distinguish between SQL activity generated by user queries versus SQL activity generated during semantic model refreshes, which makes it harder to accurately evaluate different architectural approaches.&lt;/P&gt;&lt;H3&gt;Approach 1: Materialising Views as Delta Tables&lt;/H3&gt;&lt;P&gt;Historically, our semantic models have queried SQL views hosted in Fabric. To reduce SQL Endpoint consumption, I began converting the T-SQL view logic into notebooks that materialise the results into Delta tables. The semantic models then connect directly to these Delta tables via the ADLS Gen2 connector in Power BI, effectively bypassing the SQL endpoint during refresh.&lt;/P&gt;&lt;P&gt;However, the results have been inconsistent. In some workspaces this appears to reduce overall CU consumption, while in others it actually increases costs because the notebook execution itself incurs significant compute usage.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Current new architecture(old queried straight from omdb sql views):&lt;/P&gt;&lt;img /&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;From a CU consumption perspective, is it generally more efficient to:&lt;UL&gt;&lt;LI&gt;Have semantic models query Fabric SQL views directly, or&lt;/LI&gt;&lt;LI&gt;Materialise those views into Delta tables and have semantic models consume the Delta tables through ADLS Gen2?&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Has anyone compared the total cost of repeatedly querying views during semantic model refreshes versus the cost of creating and maintaining materialised Delta tables?&lt;/LI&gt;&lt;LI&gt;While I understand that a star schema is considered best practice for reporting and semantic modelling, if the same business logic can be represented through a set of SQL views, is there still a compelling reason to physically materialise the data into tables from a cost-efficiency perspective?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attempted to benchmark both approaches, but isolating the relevant consumption metrics has proven more difficult than expected.&lt;/P&gt;&lt;H3&gt;Approach 2: Shifting Transformation Logic to the Semantic Model&lt;/H3&gt;&lt;P&gt;Another approach I'm exploring is moving the transformation and view logic out of our Fabric workspace and into semantic models hosted in the client's Power BI Pro tenant.&lt;/P&gt;&lt;P&gt;My assumption is that this would reduce SQL Endpoint consumption within our Fabric capacity because less querying and transformation would occur on our side. However, I would expect semantic model refresh times to increase as more transformation work is pushed downstream.&lt;/P&gt;&lt;P&gt;My questions here are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Would moving the transformation logic into the semantic model generally reduce or increase overall SQL-related CU consumption?&lt;/LI&gt;&lt;LI&gt;Have others seen meaningful capacity savings using this approach?&lt;/LI&gt;&lt;LI&gt;Is there a way to connect one semantic model to another semantic model without using DirectQuery? My concern is that DirectQuery would negatively impact performance and potentially introduce additional query-related costs.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I'd be very interested to hear how others are approaching this, particularly now that SQL Endpoint consumption has become much more visible within Fabric capacity metrics.&lt;/P&gt;&lt;P&gt;I have also reviewed the Query Insights for each workspace in an attempt to correlate SQL activity with overall CU consumption. However, this does not always translate into lower capacity usage. One of the challenges is that many users are querying the SQL Endpoint directly through Excel and other tools, without going through a semantic model at all. Under the new metering model, these ad hoc user queries appear to be a significant contributor to capacity consumption, making it difficult to isolate the impact of semantic model refreshes versus interactive user activity. As a result, determining whether a particular optimisation has genuinely reduced costs becomes far more challenging, as overall CU usage may be heavily influenced by user behaviour outside of the reporting layer.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2026 06:08:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Optimising-Fabric-Capacity-Usage/m-p/5367671#M17993</guid>
      <dc:creator>FabricEnjoyer</dc:creator>
      <dc:date>2026-09-18T06:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Storing and parsing HL7 data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367638#M17992</link>
      <description>&lt;P&gt;Could you add a bit more detail about your setup? How you store HL7 for analytics can change a lot depending on whether you're working with HL7 v2 or FHIR, and whether your workflow is real‑time or batch.&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2026 00:57:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367638#M17992</guid>
      <dc:creator>Kagiyama_yutaka</dc:creator>
      <dc:date>2026-09-18T00:57:19Z</dc:date>
    </item>
    <item>
      <title>Storing and parsing HL7 data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367626#M17991</link>
      <description>&lt;P&gt;Any healthcare folks can share what best practices they have found around storing HL7 data for analytics ?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 21:38:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Storing-and-parsing-HL7-data/m-p/5367626#M17991</guid>
      <dc:creator>ipkus</dc:creator>
      <dc:date>2026-09-17T21:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Building Self-Healing Data Pipelines</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Building-Self-Healing-Data-Pipelines/m-p/5367625#M17990</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 21:35:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Building-Self-Healing-Data-Pipelines/m-p/5367625#M17990</guid>
      <dc:creator>ipkus</dc:creator>
      <dc:date>2026-09-17T21:35:27Z</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/5367624#M17989</link>
      <description>&lt;P&gt;Looks like the user / SP has permissions to the LH but does not have permissions to SQL endpoint. Make sure use has READALL ( which gives them permissions to SQL Endpoint ).&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect Query mode is forcing execution through the Fabric SQL endpoint&amp;nbsp; and the gateway server either:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;cannot resolve/reach that endpoint,&lt;/LI&gt;&lt;LI&gt;is not authorized to use the connection through the gateway,&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 17 Sep 2026 21:34:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5367624#M17989</guid>
      <dc:creator>ipkus</dc:creator>
      <dc:date>2026-09-17T21:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job - Amazon S3 connector fails with region signing error on generic endpoint</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367623#M17988</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882907" data-lia-user-login="v-achippa" class="lia-mention lia-mention-user"&gt;v-achippa​&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Thank you for your reply, I tried that approach and yes, the connection does work. But the problem there is it is mandatory to specify a bucket name. Is there any way to get around this?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 21:26:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367623#M17988</guid>
      <dc:creator>Sharan_Srini99</dc:creator>
      <dc:date>2026-09-17T21:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: 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/5367622#M17987</link>
      <description>&lt;P&gt;If you want to take it a step further and reach self correcting / self-healing stage take a look at this article&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://medium.com/@rishabh.gulati_94109/ms-fabric-building-self-healing-data-ecosystems-67a7e83c5380&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 21:25:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/From-On-Premises-SQL-Server-to-Microsoft-Fabric-with-a-Metadata/m-p/5367622#M17987</guid>
      <dc:creator>ipkus</dc:creator>
      <dc:date>2026-09-17T21:25:50Z</dc:date>
    </item>
    <item>
      <title>Diagnosing a slow Fabric Data Warehouse using the new skill</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Diagnosing-a-slow-Fabric-Data-Warehouse-using-the-new-skill/m-p/5367571#M17986</link>
      <description>&lt;P&gt;When a Fabric Data Warehouse slows down, the investigation usually means jumping between the Capacity Metrics app, Query Insights, and SQL pool diagnostics while manually correlating time ranges across three different tools.&lt;/P&gt;&lt;P&gt;Microsoft just shipped the SQL DW operations skill as Generally Available, you can find the official announcement here:&lt;/P&gt;&lt;P&gt;https://community.fabric.microsoft.com/t5/Fabric-Updates-Blog/Diagnose-Fabric-Data-Warehouse-workloads-with-the-SQL-DW/ba-p/5366102&lt;/P&gt;&lt;P&gt;I dug into what this actually changes in practice: how the skill consolidates capacity spikes, query regressions, and request failures into a single conversational interface, and where it still has blind spots worth knowing before you rely on it in a production incident. There is at least one behavior around time range correlation that surprised me during testing.&lt;/P&gt;&lt;P&gt;To do that, I wrote a full article, and would love to hear if others are already using this in their warehouse troubleshooting flow.&lt;/P&gt;&lt;P&gt;https://medium.com/@arthurfr23/diagnosing-fabric-data-warehouse-with-the-sql-dw-operations-skill-investigating-workloads-without-e4060fe8661e?sharedUserId=arthurfr23&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 14:18:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Diagnosing-a-slow-Fabric-Data-Warehouse-using-the-new-skill/m-p/5367571#M17986</guid>
      <dc:creator>arthurfr23</dc:creator>
      <dc:date>2026-09-17T14:18:02Z</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/5367546#M17985</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Im not sure how this is going to help. I know the query works as I have tested and simplified multiple times by reducing or removing certain filters or reducing columns, however I&amp;nbsp; still got the same error . Not only that but I used Copy Job instead of copy activity and set it to be incremental with using watermark column option on the source table. this kind of setup and despite the source is set to a direct table not TSQL&amp;nbsp; still fails with the same error because internally the copy job will produce query against the source table to fetch data with where clause filter on the watermark column based on last saved watermark value.&amp;nbsp; So Im 100% sure that it doesnt have anything to do with the query. By the way when I created this setup initially my sql query had some syntax issue but&amp;nbsp; I was getting a different error indicating as such and not connectivity error like the one posted in the initial message.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 12:29:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5367546#M17985</guid>
      <dc:creator>alisaleh</dc:creator>
      <dc:date>2026-09-17T12:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Building Self-Healing Data Pipelines</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Building-Self-Healing-Data-Pipelines/m-p/5367522#M17984</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;&amp;nbsp;&lt;BR /&gt;Thanks for reaching out to Fabric community.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 10:45:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Building-Self-Healing-Data-Pipelines/m-p/5367522#M17984</guid>
      <dc:creator>v-csrikanth</dc:creator>
      <dc:date>2026-09-17T10:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Job - Amazon S3 connector fails with region signing error on generic endpoint</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367519#M17983</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1785424" data-lia-user-login="Sharan_Srini99" class="lia-mention lia-mention-user"&gt;Sharan_Srini99​&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;Here the error is that the S3 request is being signed for the wrong AWS region. Fabric is signing the request for us-east-1 but the S3 bucket is in ap-southeast-2.&lt;/P&gt;
&lt;P&gt;Please configure the Amazon S3 connection using the bucket-specific endpoint instead of the generic regional endpoint:&lt;BR /&gt;https://&amp;lt;bucket-name&amp;gt;.s3.ap-southeast-2.amazonaws.com&lt;/P&gt;
&lt;P&gt;Then test the connection and rerun the Copy Job. This error is caused by the region mismatch, not by the IAM permissions.&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;BR /&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 10:37:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367519#M17983</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-09-17T10:37:13Z</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/5367516#M17982</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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks for the clarification. That helps narrow down the issue.&lt;/P&gt;
&lt;P&gt;Since the same connections work successfully in Table mode, while Query/T-SQL mode fails for both the Lakehouse and SQL endpoint connections, it looks like the issue is specific to the Query mode execution rather than the connection or the query itself.&lt;/P&gt;
&lt;P&gt;As a next step, could you please try a simple query such as:&lt;/P&gt;
&lt;P&gt;SELECT TOP 10 * FROM &amp;lt;table_name&amp;gt;&lt;/P&gt;
&lt;P&gt;If the same error occurs, please share the full error details from the Copy Activity run along with a screenshot of the Source configuration&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 10:20:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Fabric-Copy-Activity-fails-in-Query-mode-but-succeeds-in-Table/m-p/5367516#M17982</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-09-17T10:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can a service principal with federated credentials be used for SQL cloud connection auth?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-a-service-principal-with-federated-credentials-be-used-for/m-p/5367507#M17981</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1504626" data-lia-user-login="CharlieFab" class="lia-mention lia-mention-user"&gt;CharlieFab​&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;Sorry for the above reply that was my mistake. I was about to share the correct debugging steps to help resolve your issue, but I was in a hurry and accidentally posted the wrong steps.&lt;/P&gt;
&lt;P&gt;Please find the correct debugging steps below to resolve the issue.&lt;/P&gt;
&lt;P data-start="43" data-end="315"&gt;In the current Fabric connection experience,&amp;nbsp;Service Principal authentication supports a service principal key or certificate, as shown in your screenshot, but there is no option to reference an Entra Federated Identity Credential (FIC).&lt;/P&gt;
&lt;P data-start="320" data-end="595"&gt;FIC requires the calling service to obtain and present a federated token, and the Fabric-managed refresh process currently doesn't expose a way to configure that federated identity for the connection. So, FIC cannot currently be selected as the credential for this connection.&lt;/P&gt;
&lt;P data-start="600" data-end="876"&gt;Since your requirement is to avoid storing a client secret, Service Principal certificate authentication is the available option shown in the connection UI. You would need to manage the certificate lifecycle/rotation and update the connection when the certificate changes.&lt;/P&gt;
&lt;P data-start="881" data-end="1122"&gt;For your scenario, where the same connection is shared by semantic models across multiple workspaces, using a dedicated Service Principal with certificate authentication can avoid granting every workspace identity access to the SQL database.&lt;/P&gt;
&lt;P data-start="881" data-end="1122"&gt;Thanks,&lt;BR /&gt;Chaithanya.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 10:01:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-a-service-principal-with-federated-credentials-be-used-for/m-p/5367507#M17981</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2026-09-17T10:01: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/5367490#M17980</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;, have you considered open mirroring using BC2ADLS?&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://youtu.be/A2HKJ7QDOKU?si=TPnitKnybDcxsuoO" target="_blank"&gt;https://youtu.be/A2HKJ7QDOKU?si=TPnitKnybDcxsuoO&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Near real-time BC data in Fabric, 0 capacity usage and free storage (F16 - 16GB, F32 - 32GB etc)&lt;/P&gt;
&lt;P&gt;--------------------------------&lt;/P&gt;
&lt;P&gt;I hope this helps, please give kudos and mark as solved if it does!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Connect with me on&amp;nbsp;&lt;A href="https://www.linkedin.com/in/alex-ward-30966b4b/" target="_blank"&gt;LinkedIn&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Subscribe to my&amp;nbsp;&lt;A href="https://www.youtube.com/@AlexTechShed" target="_blank"&gt;YouTube channel&lt;/A&gt; for Fabric/Power Platform related content!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 08:48:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5367490#M17980</guid>
      <dc:creator>wardy912</dc:creator>
      <dc:date>2026-09-17T08:48:08Z</dc:date>
    </item>
    <item>
      <title>Copy Job - Amazon S3 connector fails with region signing error on generic endpoint</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367438#M17979</link>
      <description>&lt;P&gt;I'm trying to connect Fabric's Amazon S3 connector (Copy activity, pipelines) to a bucket in ap-southeast-2, using Access Key authentication.&lt;/P&gt;&lt;P&gt;When I create a connection with the generic regional endpoint:&lt;/P&gt;&lt;P&gt;https://s3.ap-southeast-2.amazonaws.com&lt;/P&gt;&lt;P&gt;connecting fails with:&lt;/P&gt;&lt;P&gt;Expression.Error: Invalid Url. The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'ap-southeast-2'&lt;/P&gt;&lt;img /&gt;&lt;P&gt;I've added s3:ListAllMyBuckets, s3:ListBucket, and s3:GetBucketLocation to the IAM user, and the error persists identically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 03:24:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Copy-Job-Amazon-S3-connector-fails-with-region-signing-error-on/m-p/5367438#M17979</guid>
      <dc:creator>Sharan_Srini99</dc:creator>
      <dc:date>2026-09-17T03:24:05Z</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/5367430#M17978</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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It depends on whether you're on BC Online or on-prem.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;BC Online:&lt;/STRONG&gt; Direct SQL isn't an option, because users can no longer access SQL Server directly once you move to cloud-based BC.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;BC on-prem:&lt;/STRONG&gt; You can connect to SQL, but I wouldn't build on it long term. Each company has its own tables, extensions add extra tables you have to join, FlowFields aren't stored, and upgrades can change the schema. It also isn't available for BC Online, so it could block a future move to the cloud.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;API / Dataflow Gen2 BC connector:&lt;/STRONG&gt; This is the supported route and fine for smaller data. For incremental loads, filter on lastModifiedDateTime and run queries on read scale-out.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 01:38:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Business-Central-Data-to-Fabric/m-p/5367430#M17978</guid>
      <dc:creator>CharlieFab</dc:creator>
      <dc:date>2026-09-17T01:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can a service principal with federated credentials be used for SQL cloud connection auth?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-a-service-principal-with-federated-credentials-be-used-for/m-p/5367425#M17977</link>
      <description>&lt;P&gt;&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; Thanks for the clarification, the backup option I had was the workspace identities with no key rotation at all&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 00:27:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-a-service-principal-with-federated-credentials-be-used-for/m-p/5367425#M17977</guid>
      <dc:creator>CharlieFab</dc:creator>
      <dc:date>2026-09-17T00:27:34Z</dc:date>
    </item>
  </channel>
</rss>

