<?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>Dataflow topics</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/bd-p/df_dataflows</link>
    <description>Dataflow topics</description>
    <pubDate>Tue, 01 Sep 2026 12:09:23 GMT</pubDate>
    <dc:creator>df_dataflows</dc:creator>
    <dc:date>2026-09-01T12:09:23Z</dc:date>
    <item>
      <title>[BUG] Dataflow Gen2 destination picker 404 — api.powerbi.com lakehouses UK region</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/BUG-Dataflow-Gen2-destination-picker-404-api-powerbi-com/m-p/5361702#M5830</link>
      <description>&lt;P&gt;Hi community,&lt;BR /&gt;&lt;BR /&gt;We have a complete blocker with Dataflow Gen2 (CI/CD) destination configuration in our UK-region Fabric tenant.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Error:&lt;BR /&gt;&lt;/STRONG&gt;When clicking "Add default destination" and selecting a Fabric Lakehouse from the OneLake catalog, this error fires immediately for ALL users including the&lt;BR /&gt;workspace Admin:&lt;BR /&gt;DataSource.Error: Downstream service call to url 'https://api.powerbi.com/v1/workspaces/{WORKSPACE_ID}/lakehouses' failed with status code 404. (Region: uk)&lt;/P&gt;&lt;P&gt;The Lakehouse IS visible in the OneLake catalog — it appears in the picker. The 404 fires the moment it is clicked.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Root cause hypothesis:&lt;BR /&gt;&lt;/STRONG&gt;The destination picker calls the legacy Power BI REST API: api.powerbi.com/v1/workspaces/{id}/lakehouses ← returns 404&lt;BR /&gt;&lt;BR /&gt;For Fabric-native workspaces in the UK region, the correct endpoint should be: api.fabric.microsoft.com/v1/workspaces/{id}/lakehouses&lt;/P&gt;&lt;P&gt;The OneLake catalog listing (which uses a different path) resolves the lakehouse correctly — it's only the destination configuration call that uses the wrong endpoint.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Workarounds attempted — all failed:&lt;BR /&gt;&lt;/STRONG&gt;1. UI — Admin user attempted same steps → same 404&lt;BR /&gt;2. queryMetadata.json via Git — Added destination fields, pushed to prod branch → Fabric silently strips loadEnabled/destination on every sync, creating a permanent conflict loop (workspace ≠ Git on every update)&lt;BR /&gt;3. Authentication methods — Before the error began firing immediately, a "Connect to default data destination" screen appeared offering two authentication options for the Lakehouse connection:&lt;BR /&gt;- Organizational account (Sahil Singh / user account)&lt;BR /&gt;- Service principal&lt;/P&gt;&lt;P&gt;Both were attempted. Neither succeeded — the 404 followed in both cases.&lt;BR /&gt;&lt;BR /&gt;Subsequently, this connection credentials screen stopped appearing altogether. The 404 now fires immediately upon clicking lh_dhl_prod in the OneLake catalog, before the connection setup dialog is even shown. This regression suggests the failure point has moved earlier in the destination configuration flow.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions:&lt;BR /&gt;&lt;/STRONG&gt;1. Is this a known issue for UK-region tenants?&lt;BR /&gt;2. Is there a way to configure the Dataflow Gen2 destination via Fabric REST API directly to bypass the broken UI?&lt;BR /&gt;3. Are there other file-based approaches (mashup.pq metadata) for CI/CD Dataflow Gen2 destinations?&lt;/P&gt;&lt;P&gt;Happy to provide Session IDs and further details to the Fabric team.&lt;BR /&gt;&lt;BR /&gt;I have attached the relevant images, PFA...&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2026 23:16:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/BUG-Dataflow-Gen2-destination-picker-404-api-powerbi-com/m-p/5361702#M5830</guid>
      <dc:creator>sahillihas20</dc:creator>
      <dc:date>2026-08-26T23:16:25Z</dc:date>
    </item>
    <item>
      <title>iifnull() failing on non-null input</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/iifnull-failing-on-non-null-input/m-p/5359481#M5826</link>
      <description>&lt;P&gt;The documentation for iifNull() says this:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Returns the first not null item when given two or more inputs.&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;We have a dataflow which handles the contents of a number of files, using a specified CSV format.&amp;nbsp; One of the columns is named 'Dealer'.&amp;nbsp; Due to an error in an upstream system, a significant number of files came in with the header misspelled 'Delaer'.&amp;nbsp; There are so many of these files that we cannot simply edit them manually to fix.&amp;nbsp; I have the following expression in a Derived Column transform:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;iifNull('Dealer',byName('Delaer'))&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I understand this expression to mean "Use the value of the column 'Dealer' if it is not null, else use the value of the drifted column 'Delaer'."&amp;nbsp; (That name is not in the list set by the dataset, so it is drifted, and leaving out byName() causes validation to fail.)&lt;/P&gt;&lt;P&gt;When the file does not contain the spelling error, my expected result is that it simply retains the correct value in 'Dealer' because this is not null.&amp;nbsp; However, when actually run, this expression actually returns null, and causes the column in the Derived Column transform to not be created, resulting in a "Resolved attribute(s) [name] missing from [names]" error.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2026 03:40:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/iifnull-failing-on-non-null-input/m-p/5359481#M5826</guid>
      <dc:creator>cmjcf</dc:creator>
      <dc:date>2026-08-17T03:40:08Z</dc:date>
    </item>
    <item>
      <title>Dataflow Gen2 - failing to load into the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-failing-to-load-into-the-lakehouse/m-p/5316310#M5817</link>
      <description>&lt;P&gt;Hello. I have a dataflow gen2, fetching data from an azure data factory environment and loading them into a Fabric Lakehouse. It has been working flawlessfly for the last 3 months, but since two weeks, on some of the tables, I get this error:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;"There was a problem refreshing the dataflow: "Something went wrong, please try again later. If the error persists, please contact support.". Error code: EntityUserFailure. (Request ID: 6d111afc-11ee-459f-9e31-db4d08c32c44)."&lt;BR /&gt;&lt;BR /&gt;"XXX - ABC Entity Management_WriteToDataDestination: There was a problem refreshing the dataflow: "Couldn't refresh the entity because of an issue with the mashup document MashupException.Error: Error in creating lakehouse table in a version, InnerException: Tables can only contain uppercase or lowercase letters, numbers or the underscore character., Underlying error: Tables can only contain uppercase or lowercase letters, numbers or the underscore character. Details: Reason = Expression.Error;ErrorCode = Lakehouse036;Message = Tables can only contain uppercase or lowercase letters, numbers or the underscore character.;Message.Format = Tables can only contain uppercase or lowercase letters, numbers or the underscore character.;ErrorCode = Lakehouse019;InnerErrorCode = Lakehouse021,Lakehouse019;Microsoft.Data.Mashup.Error.Context = User GatewayObjectId: 1ee1c1a1-a11v-32bt-a19b-5ff6d874f432". Error code: 104100. (Request ID: 66d111afc-11ee-459f-9e31-db4d08c32c44)."&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The weird part is that there is no consistency between which tables go to error and which ones proceed to being loaded. Sometimes it works sometimes&amp;nbsp; it does not. Also, there are no issue with the naming, as all the columns are respecting the requirements laid out from the error. And above all, it was working flawlessly until few weeks ago and nothing a&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2026 12:39:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-failing-to-load-into-the-lakehouse/m-p/5316310#M5817</guid>
      <dc:creator>gabrifly</dc:creator>
      <dc:date>2026-07-23T12:39:15Z</dc:date>
    </item>
    <item>
      <title>Data pipeline failed. How do you troubleshoot?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Data-pipeline-failed-How-do-you-troubleshoot/m-p/5297285#M5813</link>
      <description>&lt;P&gt;Data pipeline failed. How do you troubleshoot?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2026 13:52:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Data-pipeline-failed-How-do-you-troubleshoot/m-p/5297285#M5813</guid>
      <dc:creator>rajan889262</dc:creator>
      <dc:date>2026-07-15T13:52:36Z</dc:date>
    </item>
    <item>
      <title>Required parameters are missing in the request data flow gen2 fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Required-parameters-are-missing-in-the-request-data-flow-gen2/m-p/5276053#M5807</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I have created a &lt;STRONG&gt;Dataflow Gen2&lt;/STRONG&gt; in Microsoft Fabric with &lt;STRONG&gt;Dataverse&lt;/STRONG&gt; as the source. When I run the dataflow independently, it executes successfully.&lt;/P&gt;&lt;P&gt;However, when I invoke the same dataflow from a &lt;STRONG&gt;pipeline&lt;/STRONG&gt; and pass the &lt;STRONG&gt;Dataverse URL&lt;/STRONG&gt; as a dynamic parameter, the execution fails.&lt;/P&gt;&lt;P&gt;Below is the error message for reference:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Required parameters are missing in the request&lt;/P&gt;&lt;P&gt;Dataflow refresh job failed with status: Failed.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2026 10:35:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Required-parameters-are-missing-in-the-request-data-flow-gen2/m-p/5276053#M5807</guid>
      <dc:creator>Dharma_Teja_M</dc:creator>
      <dc:date>2026-07-07T10:35:49Z</dc:date>
    </item>
    <item>
      <title>Data Mapping Flow with DataLake as Sink</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Data-Mapping-Flow-with-DataLake-as-Sink/m-p/5261176#M5802</link>
      <description>&lt;P&gt;Hello everyone,&lt;BR /&gt;I am currently trying to read data from a source as changelog and writing it into a merged DataLake table. So basically cdc connector logic but as for SHIR the connector is not supported.&lt;BR /&gt;I always get the issue:&lt;BR /&gt;&lt;SPAN&gt;Operation on target merge_lakehouse_landing_to_delta failed: {"StatusCode":"DFExecutorUserError","Message":"Job failed due to reason: com.microsoft.dataflow.Issues: DF-SRC-002 - 'tableName' (Table Name) is required - \naction sink(\n) ~&amp;gt; sinkName,EXE-0001,Dataflow cannot be analyzed as a graph,[564 737]","Details":""}&lt;BR /&gt;I use scriptLines to transform the lines inside the dataflow and if I provide json File as sink the pipeline runs without errors at least. If I provide a lakehouse table even if I hardcode the table name in the dataset I get this error (already recreated it so an old version of the dataset cannot be the issue).&lt;BR /&gt;Why is that so can I not merge the data directly into lakehouse or is there another issue I've overseen why lakehouse doesn't work as sink here?&lt;BR /&gt;Thank you in advance&lt;BR /&gt;Lara&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2026 12:52:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Data-Mapping-Flow-with-DataLake-as-Sink/m-p/5261176#M5802</guid>
      <dc:creator>LaraHaegele</dc:creator>
      <dc:date>2026-07-01T12:52:15Z</dc:date>
    </item>
    <item>
      <title>ELT JSON Semi Structured Loop</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/ELT-JSON-Semi-Structured-Loop/m-p/5255887#M5797</link>
      <description>&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies this is a bit of a duplicated but because i only recently have plan approved, so i dont get the time to do deep research or learning as yet&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Pipelines/ELT-JSON-Semi-structured/m-p/5248733#M9546" target="_blank"&gt;Solved: Re: ELT JSON / Semi structured - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My source are mostl API JSON that i have to transform but before i can transform i need to loop, i dont know if dataflow is like powerbi powrqury window or i do it in powerbi one example and past the script in dataflow but how would i do api loops then unpivot the json, would i need pythin to first downlad all looped api content then pass on dataflow etc?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2026 07:27:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/ELT-JSON-Semi-Structured-Loop/m-p/5255887#M5797</guid>
      <dc:creator>icassiem</dc:creator>
      <dc:date>2026-06-30T07:27:33Z</dc:date>
    </item>
    <item>
      <title>Dataflow Activity Parameters Lose Expression and Get Hardcoded After Reopening Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Activity-Parameters-Lose-Expression-and-Get-Hardcoded/m-p/5252710#M5793</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi! I’m using a Dataflow Gen2 activity in a Fabric pipeline and passing parameters via dynamic content (pipeline library variables).&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;When I configure the parameters, they are correctly stored as expressions:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"value": {&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"value":&lt;/EM&gt;&lt;DIV&gt;&lt;EM&gt;"@pipeline().libraryVariables.Data_engineering_Variable_Library_workspace_id"&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"type": "Expression"&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The pipeline validates and saves successfully.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;However, when I reopen the pipeline, Fabric rewrites the parameter values as evaluated static string:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"value": "f31c2823-10f1-4e97-bc15-6f39f4981d57",&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"type": "String"&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This removes the expression and effectively hardcodes the value.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Is there a supported way to persist dynamic expressions for Dataflow Gen2 parameters in pipeline activities?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Are there recommended patterns for passing workspaceId/lakehouseId dynamically without the UI flattening expressions?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2026 13:09:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Activity-Parameters-Lose-Expression-and-Get-Hardcoded/m-p/5252710#M5793</guid>
      <dc:creator>svac</dc:creator>
      <dc:date>2026-06-29T13:09:44Z</dc:date>
    </item>
    <item>
      <title>Dataflow Gen2 authentication to Lakehouse without user dependency?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-authentication-to-Lakehouse-without-user/m-p/5251085#M5791</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have run into a challenge with &lt;STRONG&gt;Dataflow Gen2 in Microsoft Fabric&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;When creating a dataflow and selecting a destination, for example a &lt;STRONG&gt;Lakehouse in the same workspace&lt;/STRONG&gt;, the authentication appears to require an &lt;STRONG&gt;Organizational account&lt;/STRONG&gt;. In practice, this means that the connection becomes tied to a specific user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This creates governance and operational challenges in larger organizations. If the user who created or authenticated the dataflow leaves the company, changes role, or loses access, someone else needs to take over the dataflow and re-authenticate the connection. In an organization with thousands of users, this quickly becomes difficult to manage and track.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that in some scenarios it may be possible to use a &lt;STRONG&gt;service principal&lt;/STRONG&gt;, but that raises another question: how many service principals should be created and maintained? Should it be one per workspace, per domain, per team, per solution, or something else?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this specific scenario, &lt;STRONG&gt;Workspace identity&lt;/STRONG&gt; feels like a much more natural fit. A workspace-scoped identity would reduce the dependency on individual user accounts and make the solution more robust over time.&lt;/P&gt;&lt;P&gt;Microsoft’s documentation describes Workspace identity as a Fabric-managed service principal associated with a workspace, where Fabric manages the credentials and can use the identity with resources that support Microsoft Entra authentication. The Lakehouse connector documentation also shows that, for Dataflow Gen2, the supported authentication type is currently &lt;STRONG&gt;Organizational account.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;What is the recommended best practice for authenticating Dataflow Gen2 when writing to a Lakehouse in the same workspace, without creating a dependency on a personal user account?&lt;/LI&gt;&lt;LI&gt;Is using a service principal the recommended approach today?&lt;/LI&gt;&lt;LI&gt;If so, what is the recommended pattern: one service principal per workspace, per team, per solution, or something else?&lt;/LI&gt;&lt;LI&gt;Are there any plans to support &lt;STRONG&gt;Workspace identity&lt;/STRONG&gt; for this scenario?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It would be very helpful to hear how other organizations are handling this, especially in larger environments where ownership changes and user lifecycle management can otherwise become quite difficult.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Jun 2026 07:19:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-authentication-to-Lakehouse-without-user/m-p/5251085#M5791</guid>
      <dc:creator>Parchitect</dc:creator>
      <dc:date>2026-06-29T07:19:31Z</dc:date>
    </item>
    <item>
      <title>Dataflow Gen2 Copying Old Data</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-Copying-Old-Data/m-p/5230439#M5788</link>
      <description>&lt;P&gt;I have a dataflow that is transforming data and then moving it to a staging table in a Silver Lakehouse. I keep having issues where the number of rows moved to that lakehouse doesnt match what I am seeing in the dataflow preview or what it should be. A simple example of this is that this should have read 2 and written 2 rows but instead it read and wrote 3 rows. Upon investigating this was the 3 rows from the previos time it ran, suggesting a caching issue! I have others where I have 578 new rows in my table within the dataflow and then in the Staging table it has 212 rows. I'm very confused as to what is going on and concerned I may need to convert to notebooks for my transformations?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 20:58:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Dataflow-Gen2-Copying-Old-Data/m-p/5230439#M5788</guid>
      <dc:creator>Russell_DC</dc:creator>
      <dc:date>2026-06-23T20:58:30Z</dc:date>
    </item>
    <item>
      <title>amazon redshift ODBC driver</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/amazon-redshift-ODBC-driver/m-p/5212338#M5783</link>
      <description>&lt;P&gt;I was told by the vendor that provides me data in an amazon redshift data warehouse that the ODBC 1.x connector will not be working for desktop and I need to move to the 2.x connector.&amp;nbsp; &amp;nbsp;My question is will this ODBC change also affect Dataflow Gen2 accessing the amazon redshift data warehouse?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2026 20:13:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/amazon-redshift-ODBC-driver/m-p/5212338#M5783</guid>
      <dc:creator>mklevemann</dc:creator>
      <dc:date>2026-06-17T20:13:41Z</dc:date>
    </item>
    <item>
      <title>Gen2 dataflow read only mode issue</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Gen2-dataflow-read-only-mode-issue/m-p/5198302#M5779</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;I have admin access to the workspace. When I opened the Gen2 flow created by Rahul R., I was unable to edit it, because it is showing in read-only mode. Could you please help to fix this issue.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2026 13:38:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Gen2-dataflow-read-only-mode-issue/m-p/5198302#M5779</guid>
      <dc:creator>Lokamba</dc:creator>
      <dc:date>2026-06-15T13:38:08Z</dc:date>
    </item>
    <item>
      <title>"Keyword not supported: variables" error using Dataflow gen2 when evaluating Fabric.Warehouse()</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/quot-Keyword-not-supported-variables-quot-error-using-Dataflow/m-p/5195234#M5773</link>
      <description>&lt;P&gt;Dataflow Gen2 fails in Power Query editor when evaluating Fabric.Warehouse() navigation query.&lt;/P&gt;&lt;P&gt;The issue occurs before refresh execution, while editing/evaluating standard M steps. It also occurs with a basic Dataflow Gen2 using Enter Data as source and Fabric Warehouse as destination.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;BR /&gt;Keyword not supported: variables.&lt;BR /&gt;Parameter name: keyword.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Environment:&lt;BR /&gt;Fabric capacity: F8&lt;BR /&gt;Client version: 2606.1.29545-train&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2026 21:24:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/quot-Keyword-not-supported-variables-quot-error-using-Dataflow/m-p/5195234#M5773</guid>
      <dc:creator>JuanFcoCalquin</dc:creator>
      <dc:date>2026-06-09T21:24:09Z</dc:date>
    </item>
    <item>
      <title>DataFlow Gen 2 Error:Fast copy user error</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/DataFlow-Gen-2-Error-Fast-copy-user-error/m-p/5189947#M5765</link>
      <description>&lt;P&gt;Hi, everyone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting the following error when trying to load from Lake House. Other 2 tables from it are working fine. Preview on the errorred table is also fine. I don't have fast copy required for this table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error Code: Fast Copy User Error, Error Details: Couldn't refresh the entity because of an issue with the mashup document MashupException.Error: DataSource.Error: Pipeline execution failed (runId: ed5c354c-46f1-47ee-a93f-d31a1ba53837). Operation on target ca-9b399285-c5d3-49ce-9dcd-043b12b9c145 failed: ErrorCode=DeltaSnapshotError,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Delta table snapshot doesn't exist.,Source=Microsoft.DataTransfer.ClientLibrary,''Type=Microsoft.Data.DeltaLake.DeltaLakeException,Message=table doesn't exist,Source=Microsoft.Data.DeltaLake,' Details: Reason = DataSource.Error;RunId = ed5c354c-46f1-47ee-a93f-d31a1ba53837 (Request ID: aa7cc8a3-d52e-4a00-bb19-850271030939).&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 11:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/DataFlow-Gen-2-Error-Fast-copy-user-error/m-p/5189947#M5765</guid>
      <dc:creator>PolinaOr</dc:creator>
      <dc:date>2026-05-28T11:17:02Z</dc:date>
    </item>
    <item>
      <title>Is ADF Fabric version compactable with Github Proxima on version control?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Is-ADF-Fabric-version-compactable-with-Github-Proxima-on-version/m-p/5185760#M5763</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, I am an internal Microsoft employee. we're evaluating whether to use Data Factory in Microsoft Fabric for a new SQL→Kusto pipeline. We need Git integration with GitHub Enterprise Server (specifically&amp;nbsp;&lt;/SPAN&gt;msft.ghe.com&lt;SPAN&gt;, which uses SAML SSO), instead of Azure DevOps repo. Does Fabric Data Factory support GitHub Enterprise Server as a source control backend, similar to how classic ADF does? If so, are there any known limitations compared to classic ADF's GitHub Enterprise Server integration (e.g., PAT authentication, branch management)? Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 21:01:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Is-ADF-Fabric-version-compactable-with-Github-Proxima-on-version/m-p/5185760#M5763</guid>
      <dc:creator>zihanwang</dc:creator>
      <dc:date>2026-05-19T21:01:07Z</dc:date>
    </item>
    <item>
      <title>What actually influences CU consumption in Dataflows Gen2?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/What-actually-influences-CU-consumption-in-Dataflows-Gen2/m-p/5156625#M5752</link>
      <description>&lt;P&gt;I’m trying to better understand what really drives CU consumption in Dataflows Gen2, because my observations don’t fully match my expectations.&lt;/P&gt;&lt;P&gt;I have two Dataflows Gen2, both orchestrated via a pipeline:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Dimensions dataflow&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Loads 19 tables into a Lakehouse&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;All tables come from one Excel file on SharePoint, each from a different sheet&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Transformations: only Select Columns&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Runtime: ~4 minutes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Facts dataflow&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Loads 8 tables&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;All tables come from different Excel files on SharePoint&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Heavy transformations:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Multiple pivot / unpivot&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Merges&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Two tables have &amp;gt;15M rows&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Runtime: ~10 minutes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Intuitively, I expected the facts dataflow to consume significantly more CUs due to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Much larger row counts&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;More complex transformations&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;However, In practice, the dimensions dataflow actually consumes more CUs than the facts dataflow.&lt;/P&gt;&lt;P&gt;What are the main factors that actually influence CU consumption in Dataflows Gen2?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 15:16:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/What-actually-influences-CU-consumption-in-Dataflows-Gen2/m-p/5156625#M5752</guid>
      <dc:creator>mrbartuss</dc:creator>
      <dc:date>2026-04-23T15:16:38Z</dc:date>
    </item>
    <item>
      <title>Is there any way of editing column mapping with advanced destination editor in Gen2 CICD dataflows?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Is-there-any-way-of-editing-column-mapping-with-advanced/m-p/5146770#M5741</link>
      <description>&lt;P&gt;The below documentation refers to a preview feature where we can incorporate variable libraries into Gen2 dataflow destinations. It makes explicit the point that once the editor is used, the destinations GUI will no longer work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/dataflow-gen2-advanced-edit-data-destinations" target="_blank"&gt;https://learn.microsoft.com/en-us/fabric/data-factory/dataflow-gen2-advanced-edit-data-destinations&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any means of updating the underlying column mapping once the editor has been used? The query does not appear to specify any columns, and adding columns into the destination does not appear to automatically map. I've tried switching the workspace and warehouse IDs to string literals (as they were before I edited), but the GUI still doesn't work. Has anyone thought about this workflow and the fact that output columns might change over time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only option I can see so far is to delete and recreate the query, which isn't ideal&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 15:01:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Is-there-any-way-of-editing-column-mapping-with-advanced/m-p/5146770#M5741</guid>
      <dc:creator>JoshT</dc:creator>
      <dc:date>2026-04-10T15:01:54Z</dc:date>
    </item>
    <item>
      <title>Variable library usage leads to error with dynamic data destination</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Variable-library-usage-leads-to-error-with-dynamic-data/m-p/5146653#M5739</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use a dataflow to load data from an external PostgreSQL database into a Lakehouse. I have dev, test, and prod workspaces created and linked through a deployment pipeline, with identical lakehouses in each. Therefore, as the dataflow goes from one workspace to the next, the destination needs to be managed accordingly (as it doesn't automatically update as part of the deployment process).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using a variable library (based on this &lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/dataflow-gen2-variable-references" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;) that contains the Workspace and Lakehouse IDs for each stage, but run into an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create the WorkspaceID variable using this query (with an equivalent one for the lakehouse ID), and disable staging:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This produces the expected value:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, as soon as I add a table, I get the following error with the variables:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN class=""&gt;The import Variable.ValueOrDefault matches no exports. Did you miss a module reference?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;EM&gt;&lt;SPAN class=""&gt;Details&lt;/SPAN&gt;&lt;/EM&gt;&lt;DIV class=""&gt;&lt;EM&gt;&lt;SPAN class=""&gt;Reason = Expression.Error&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;EM&gt;&lt;SPAN class=""&gt;ErrorCode = 10079&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated - thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 12:27:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Variable-library-usage-leads-to-error-with-dynamic-data/m-p/5146653#M5739</guid>
      <dc:creator>JamesMurkin1</dc:creator>
      <dc:date>2026-04-10T12:27:35Z</dc:date>
    </item>
    <item>
      <title>Unable to delete auto-generated Semantic Model (empty, no lineage)</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Unable-to-delete-auto-generated-Semantic-Model-empty-no-lineage/m-p/5145746#M5735</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m unable to delete an auto-generated Semantic Model (e.g. DataflowsStagingWarehouse1) in a Fabric-enabled workspace.&lt;/P&gt;&lt;P&gt;Context:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The Semantic Model exists in the workspace&lt;/LI&gt;&lt;LI&gt;It has no tables / no schema&lt;/LI&gt;&lt;LI&gt;Lineage View shows no dependencies&lt;/LI&gt;&lt;LI&gt;No reports or other artifacts are connected&lt;/LI&gt;&lt;LI&gt;I’m Workspace Admin&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Issue: When trying to delete it, I get:&lt;/P&gt;&lt;PRE&gt;Model_FailToRemoveDatasetMessage (400)&lt;/PRE&gt;&lt;P&gt;Even though the model is completely empty, deletion is blocked, which suggests a hidden backend dependency (possibly from Dataflows Gen2 / Warehouse / Lakehouse staging).&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is this a known Fabric issue?&lt;/LI&gt;&lt;LI&gt;Is there any supported way to clean up these orphan Semantic Models?&lt;/LI&gt;&lt;LI&gt;Or is Microsoft Support backend cleanup the only option?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks in advance for any confirmation or guidance&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2026 10:21:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Unable-to-delete-auto-generated-Semantic-Model-empty-no-lineage/m-p/5145746#M5735</guid>
      <dc:creator>bdpr_95</dc:creator>
      <dc:date>2026-04-09T10:21:02Z</dc:date>
    </item>
    <item>
      <title>Fabric Dataflow Gen 2</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen-2/m-p/5138824#M5726</link>
      <description>&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;I have one source account file from which I’m deriving 12 different tables in Dataflows, all of which are driven from the same account file.&lt;/P&gt;&lt;P class=""&gt;For example, in the account file there is a column called&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;SegmentAllocation&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;that contains nested JSON. In my scenario, I’m expanding this JSON structure (which is sourced from the account file) into multiple columns/tables.&lt;/P&gt;&lt;P class=""&gt;My dataflow runs successfully for all 12 derived tables plus the main account table. However, for 4 of these tables—whose destination is a Lakehouse—the entire table is populated with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;NULL&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;values; every row shows&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;NULL&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for all columns.&lt;/P&gt;&lt;P class=""&gt;I’ve tried several troubleshooting steps:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Dropping the destination tables and recreating them with the same schema as defined in the dataflow.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Ensuring the schema fully matches both the dataflow and the Lakehouse destination.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Re‑mapping the dataflow to the default data destination.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;Despite all of this, these 4 tables still end up with completely&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;NULL&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;values.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 25 Mar 2026 13:09:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen-2/m-p/5138824#M5726</guid>
      <dc:creator>negideepika06</dc:creator>
      <dc:date>2026-03-25T13:09:47Z</dc:date>
    </item>
  </channel>
</rss>

