Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered

Reply
Martin_Pachwald
Advocate I
Advocate I

Semantic model refresh activity doesn't consider hidden tables

Hello,

 

I tried to select certain tables from my semantic model in the preview feature "semantic model refresh" activity in a pipeline.

 

However, it looks like that hidden tables are not considered to be refreshed at the moment.

 

Is it planned to change this behaviour or should I show all tables in the model?

1 ACCEPTED SOLUTION
V-yubandi-msft
Community Support
Community Support

Hi @Martin_Pachwald ,

Thank you for reaching out to the Microsoft Fabric Community.  Currently, hidden tables do not appear in the Semantic model refresh activity UI for Fabric pipelines, and therefore, they will not be refreshed unless explicitly added.

A straightforward workaround is to use dynamic content in the pipeline JSON to manually include the hidden tables, allowing you to refresh them without unhiding them in the model.

 

Created a semantic model with two tables  one visible, called VisibleTable, and one hidden, calledHiddenTable.

Vyubandimsft_0-1744028575378.png

 

Then published the semantic model, created a Data Pipeline and added a Semantic model refresh activity in Data Factory for Microsoft Fabric (Preview) - Microsoft Fabric | ... selected the connection, workspace and semantic model; waited for the Table(s) dropdown to populate.

 

Vyubandimsft_1-1744028656595.png

…and then, when it loaded, noted that only the visible table was shown in the dropdown.

Vyubandimsft_3-1744028693552.png

I didn’t select anything and instead clicked “Add dynamic content” to use an expression to select the table instead.

Vyubandimsft_4-1744028726172.png

Then in the Pipeline expression builder I entered the following.

@json('
    [
        {
            "table":"HiddenTable"
        }
    ]
')

 

Vyubandimsft_5-1744028791554.pngVyubandimsft_6-1744028801811.png

 

After completing this task, ran the pipeline, and only the hidden table was refreshed.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
V-yubandi-msft
Community Support
Community Support

Hi @Martin_Pachwald ,

Thank you for reaching out to the Microsoft Fabric Community.  Currently, hidden tables do not appear in the Semantic model refresh activity UI for Fabric pipelines, and therefore, they will not be refreshed unless explicitly added.

A straightforward workaround is to use dynamic content in the pipeline JSON to manually include the hidden tables, allowing you to refresh them without unhiding them in the model.

 

Created a semantic model with two tables  one visible, called VisibleTable, and one hidden, calledHiddenTable.

Vyubandimsft_0-1744028575378.png

 

Then published the semantic model, created a Data Pipeline and added a Semantic model refresh activity in Data Factory for Microsoft Fabric (Preview) - Microsoft Fabric | ... selected the connection, workspace and semantic model; waited for the Table(s) dropdown to populate.

 

Vyubandimsft_1-1744028656595.png

…and then, when it loaded, noted that only the visible table was shown in the dropdown.

Vyubandimsft_3-1744028693552.png

I didn’t select anything and instead clicked “Add dynamic content” to use an expression to select the table instead.

Vyubandimsft_4-1744028726172.png

Then in the Pipeline expression builder I entered the following.

@json('
    [
        {
            "table":"HiddenTable"
        }
    ]
')

 

Vyubandimsft_5-1744028791554.pngVyubandimsft_6-1744028801811.png

 

After completing this task, ran the pipeline, and only the hidden table was refreshed.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June FBC25 Carousel

Fabric Monthly Update - June 2025

Check out the June 2025 Fabric update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors