<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Fabric - semantic model - refresh in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142139#M1609</link>
    <description>&lt;P&gt;I don't have experience with it, but I think scroll down to Power BI -&amp;gt; Get customer support &lt;A href="https://support.fabric.microsoft.com" target="_blank" rel="noopener"&gt;https://support.fabric.microsoft.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you should also check with IT / Microsoft 365 Admin in your organization to see if you have some special considerations regarding support tickets, how much data you can share with the MS support personnel, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the issue you are encountering is a known issue and current workarounds seem to be to use Tabular Editor or Power BI Desktop (import mode).&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2024 07:01:51 GMT</pubDate>
    <dc:creator>frithjof_v</dc:creator>
    <dc:date>2024-09-10T07:01:51Z</dc:date>
    <item>
      <title>Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4135397#M1564</link>
      <description>&lt;P&gt;I just started with semantic models in fabric&lt;/P&gt;&lt;P&gt;What is the best way to resync a table a table from the source (i.e add a new column to a table in the model that has been added to the source table).&lt;/P&gt;&lt;P&gt;Currently I am using the edit tables button but it not really what I need in the case since it refresh the whole model.&lt;/P&gt;&lt;P&gt;A part from that it seems be a bit buggy - adding new tables works but using it to refresh current tables does not seem work every time.&lt;/P&gt;&lt;P&gt;How is this supposed to be done?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 12:15:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4135397#M1564</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-05T12:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4135660#M1565</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="466155" data-lia-user-login="joakimfenno" class="lia-mention lia-mention-user"&gt;joakimfenno&lt;/a&gt;&amp;nbsp;for adding new columns to a semantic model, in the Fabric UI you'll need to use the &lt;STRONG&gt;Edit Tables&lt;/STRONG&gt; button, but you can filter what tables will be included in the refresh.&amp;nbsp; E.G in the image below I have added a new column to my Warehouse employees tables, but to get that column to appear in a custom semantic model, I need to open the model and click Edit Tables.&amp;nbsp; I can then enable/disable which tables I want the metadata to be refreshed for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 14:26:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4135660#M1565</guid>
      <dc:creator>AndyDDC</dc:creator>
      <dc:date>2024-09-05T14:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4136873#M1572</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="466155" data-lia-user-login="joakimfenno" class="lia-mention lia-mention-user"&gt;joakimfenno&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the reply from AndyDDC&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can refresh individual tables using the Enhanced Refresh API. This method allows you to specify which tables to refresh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a simple example code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import sempy.fabric as fabric

# Define the dataset and workspace
dataset = "YourDatasetName"
workspace = "YourWorkspaceName"

# Objects to refresh
objects_to_refresh = [
    {"table": "YourTableName"}
]

# Refresh the dataset
fabric.refresh_dataset(workspace=workspace, dataset=dataset, objects=objects_to_refresh)

# List the refresh requests
fabric.list_refresh_requests(dataset=dataset, workspace=workspace)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;For more information please see:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://fabric.guru/refreshing-individual-tables-and-partitions-with-semantic-link" target="_blank"&gt;Refreshing Individual Tables and Partitions With Semantic Link (fabric.guru)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other questions please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 06:50:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4136873#M1572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-06T06:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4136934#M1573</link>
      <description>&lt;P&gt;I tried that and selected the table with thenew column only but that made all other tables dissapeared&lt;BR /&gt;and not only that, it seems like there is no optioon to reverse the change?&lt;/P&gt;&lt;P&gt;In this case my model (datatypes, relations, measures etc.) was huge&lt;/P&gt;&lt;P&gt;Can I reverse the change somehow?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, if I have two new columns in a table, how do I add one of them to the model?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and actually, I tried with another model now, edit table did not pick up the new columns (source is a view in warehouse sourced from lakehouse)&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 07:14:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4136934#M1573</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-06T07:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4137057#M1574</link>
      <description>&lt;P&gt;I should have also stated that you're existing tables will need to be selected, my apologies for not being more clear on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for column-by-column I don't believe you can do that.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 08:04:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4137057#M1574</guid>
      <dc:creator>AndyDDC</dc:creator>
      <dc:date>2024-09-06T08:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138154#M1575</link>
      <description>&lt;P&gt;If you are using a view as data source, the queries will not run as Direct Lake instead they will run as DirectQuery.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you considered instead to use an Import mode model, created in Power BI desktop, to connect to your Fabric Warehouse?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you get more customization options, e.g. option to select specific columns.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 17:47:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138154#M1575</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-09-06T17:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138618#M1577</link>
      <description>&lt;P&gt;thanks the plan is to do it in the next phase&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2024 04:30:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138618#M1577</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-07T04:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138619#M1578</link>
      <description>&lt;P&gt;unfortunatley I had ro recreate the whole model&lt;/P&gt;&lt;P&gt;seems like there is no way to version control semantic models yet?&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2024 04:31:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138619#M1578</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-07T04:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138687#M1579</link>
      <description>&lt;P&gt;You can link the Workspace to Azure DevOps or GitHub and source control the Semantic Models there:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2024 08:36:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4138687#M1579</guid>
      <dc:creator>AndyDDC</dc:creator>
      <dc:date>2024-09-07T08:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140064#M1593</link>
      <description>&lt;P&gt;Hi again&lt;BR /&gt;I still have issues with the GUI refresh&lt;BR /&gt;when trying Edit tables&amp;nbsp; - refresh I receive this (screenshot below)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 07:11:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140064#M1593</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-09T07:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140136#M1594</link>
      <description>&lt;P&gt;Are you using default or custom semantic model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you delete a table column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could try to deselect a table from the semantic model, apply, and then reselect it again. If you do this, you could perhaps lose any measures which belongs to that table (I'm not sure) and relationships. But perhaps deselecting a table, apply, and then reselect the table will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe alternatives to the web GUI is Tabular Editor or Power BI Desktop (Power BI Desktop can't edit direct lake models yet, but it can create and edit Import mode models which offer more customization options).&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 07:51:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140136#M1594</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-09-09T07:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140149#M1595</link>
      <description>&lt;P&gt;custom model&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I changed a source object from view to tabel (same name)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried deslect - select but that did not work&lt;BR /&gt;&lt;BR /&gt;I will try the API for refreshing ythe model but this is frsutrating since some of our users will use the GUI&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 07:52:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140149#M1595</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-09T07:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140202#M1596</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;can this be used to add new columns (i.e update the model)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what is dataset? is that the name of the semantic model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do you run this within fabric (notebook) or outside?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 08:17:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140202#M1596</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-09T08:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140240#M1597</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="466155" data-lia-user-login="joakimfenno" class="lia-mention lia-mention-user"&gt;joakimfenno&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks to all for their interest in this case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Can this be used to add new columns (i.e. update the model)?&lt;/P&gt;
&lt;P&gt;It can be used to refresh a single table, not to update.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. What is Dataset and is this the name of the semantic model?&lt;/P&gt;
&lt;P&gt;Yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Are you running it inside the fabric (Notebook) or outside?&lt;/P&gt;
&lt;P&gt;Run it in a Fabric notebook, like the one shown below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other questions please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 08:36:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4140240#M1597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-09T08:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4141899#M1605</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;this is urgent and frustrating&lt;/P&gt;&lt;P&gt;shall I create a new forum topic for this issue specifically?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 04:18:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4141899#M1605</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-10T04:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142017#M1606</link>
      <description>&lt;P&gt;I think I will recommend to create a support ticket&amp;nbsp;&lt;A href="https://support.fabric.microsoft.com" target="_blank" rel="noopener"&gt;https://support.fabric.microsoft.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I think there are two separate concepts here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Edit the schema of the model ("Edit Tables"). &lt;A href="https://learn.microsoft.com/en-us/fabric/get-started/direct-lake-edit-tables" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/get-started/direct-lake-edit-tables&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Refresh the data content. &lt;A href="https://learn.microsoft.com/en-us/fabric/get-started/direct-lake-overview#refresh" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/get-started/direct-lake-overview#refresh&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I believe the first one is the cause of your issues?&lt;/P&gt;&lt;P&gt;The latter can be done automatically, in that case there would be no need for your users to refresh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps you will find your issue listed as a Known issue here: &lt;A href="https://learn.microsoft.com/en-us/fabric/get-started/fabric-known-issues#currently-active-known-issues" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/get-started/fabric-known-issues#currently-active-known-issues&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similar topics:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/General-Discussion/Edit-Tables-in-a-custom-Semantic-Model-Anyone-found-a-workaround/m-p/4131143" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/General-Discussion/Edit-Tables-in-a-custom-Semantic-Model-Anyone-found-a-workaround/m-p/4131143&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Data-Engineering/Edit-tables-of-semantic-model-does-not-add-tables/m-p/4025163" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Data-Engineering/Edit-tables-of-semantic-model-does-not-add-tables/m-p/4025163&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Tabular Editor to edit semantic models may be an alternative.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or using Power BI desktop (import mode).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you using Lakehouse or Warehouse?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, using views is bad for performance in direct lake semantic models. Views make the report queries fall back to DirectQuery (which has lower performance than Direct Lake). So the recommendation is to use tables, not views, if you wish to use Direct Lake mode.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 06:20:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142017#M1606</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-09-10T06:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142107#M1608</link>
      <description>&lt;P&gt;Thanks for getting back&lt;/P&gt;&lt;P&gt;My biggest issue rigth now is the first one ("Edit tables")&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I use Warehouse as a source but there is a mix of tables (warehouse) and views (sourced from delta tables in lakehouse). I am aware about the direct lake functionality and I will soon only have tables in Warehouse as source. However, the semantic edit table refresh shoudl still work (pick up the updated model from warehouse).&lt;BR /&gt;&lt;BR /&gt;I will create a support ticket.&lt;/P&gt;&lt;P&gt;Can you please guide me on how I do that or send me a more specific link? What permission do I need?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 06:36:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142107#M1608</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-10T06:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142139#M1609</link>
      <description>&lt;P&gt;I don't have experience with it, but I think scroll down to Power BI -&amp;gt; Get customer support &lt;A href="https://support.fabric.microsoft.com" target="_blank" rel="noopener"&gt;https://support.fabric.microsoft.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you should also check with IT / Microsoft 365 Admin in your organization to see if you have some special considerations regarding support tickets, how much data you can share with the MS support personnel, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the issue you are encountering is a known issue and current workarounds seem to be to use Tabular Editor or Power BI Desktop (import mode).&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 07:01:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142139#M1609</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-09-10T07:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142238#M1610</link>
      <description>&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Import mode works but I need to create a general model that van be used for mutiplöe reports and be consumed directly from excel. Can you acheive this with Power BI Desktop?&lt;BR /&gt;regarding tabular editor - can ypou publish a semantic model or a general model from that tool?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 07:45:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142238#M1610</guid>
      <dc:creator>joakimfenno</dc:creator>
      <dc:date>2024-09-10T07:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric - semantic model - refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142308#M1611</link>
      <description>&lt;P&gt;I think any semantic model is a general model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can create multiple reports with live connection to any semantic model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also think you can connect Excel to any semantic model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is possible for Power BI Desktop (import mode) semantic models, but the semantic model needs to be published to the web service before you can create new reports connected to the model or connect to the model from Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's how to do it: you create a model (actually you need to create a report) in Power BI desktop, then you publish this report with it's model to the web service. This way the model becomes available to create other reports connected to this model, or connect to the model from Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obviously, there are sharing and governance questions regarding this, so be sure to read up on and understand topics like sharing of power bi models/reports, power bi access control and permissions, analyze in excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With tabular editor you can also create, edit and publish a semantic model. It can not be used to create a report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power BI desktop is used for creating report+model. It's not possible to create a model without report in Power BI desktop. So you will need to create a report (it could be empty) and it means you create a model at the same time. This is a bit unintuitive. However in order to create a model in Power BI desktop, you will need to create a report (it could be blank). When you publish the Power BI Desktop report+model to the web service, other reports and Excel can connect to the model which is hosted in the web service. I think Power BI desktop is a quite easy tool to use.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 08:26:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-semantic-model-refresh/m-p/4142308#M1611</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-09-10T08:26:29Z</dc:date>
    </item>
  </channel>
</rss>

