<?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 Fabric Warehouse Table Size in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4918877#M4101</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have 100s of tables in fabric warehouse. How do i find out table sizes of each tables? Any query?&lt;BR /&gt;&lt;BR /&gt;online suggestion -&amp;nbsp;&lt;BR /&gt;SELECT&lt;BR /&gt;s.name AS schema_name,&lt;BR /&gt;t.name AS table_name,&lt;BR /&gt;SUM(ps.used_page_count) * 8 / 1024.0 AS size_mb,&lt;BR /&gt;SUM(ps.reserved_page_count) * 8 / 1024.0 AS reserved_mb&lt;BR /&gt;FROM sys.tables t&lt;BR /&gt;JOIN sys.schemas s&lt;BR /&gt;ON t.schema_id = s.schema_id&lt;BR /&gt;JOIN sys.dm_db_partition_stats ps&lt;BR /&gt;ON t.object_id = ps.object_id&lt;BR /&gt;GROUP BY&lt;BR /&gt;s.name,&lt;BR /&gt;t.name&lt;BR /&gt;ORDER BY&lt;BR /&gt;size_mb DESC;select * from (&lt;BR /&gt;select obj.name, (sum(reserved_page_count) * 8.0)/1024 as "size in MB",&lt;BR /&gt;((sum(reserved_page_count) * 8.0)/1024)/1024 as "size in GB"&lt;BR /&gt;from sys.dm_db_partition_stats part, sys.objects obj where part.object_id = obj.object_id group by obj.name&lt;BR /&gt;)a&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;DMV (Dynamic Management View) 'dm_db_partition_stats' is not supported.&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jan 2026 19:11:00 GMT</pubDate>
    <dc:creator>AJAJ</dc:creator>
    <dc:date>2026-01-15T19:11:00Z</dc:date>
    <item>
      <title>Fabric Warehouse Table Size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4918877#M4101</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have 100s of tables in fabric warehouse. How do i find out table sizes of each tables? Any query?&lt;BR /&gt;&lt;BR /&gt;online suggestion -&amp;nbsp;&lt;BR /&gt;SELECT&lt;BR /&gt;s.name AS schema_name,&lt;BR /&gt;t.name AS table_name,&lt;BR /&gt;SUM(ps.used_page_count) * 8 / 1024.0 AS size_mb,&lt;BR /&gt;SUM(ps.reserved_page_count) * 8 / 1024.0 AS reserved_mb&lt;BR /&gt;FROM sys.tables t&lt;BR /&gt;JOIN sys.schemas s&lt;BR /&gt;ON t.schema_id = s.schema_id&lt;BR /&gt;JOIN sys.dm_db_partition_stats ps&lt;BR /&gt;ON t.object_id = ps.object_id&lt;BR /&gt;GROUP BY&lt;BR /&gt;s.name,&lt;BR /&gt;t.name&lt;BR /&gt;ORDER BY&lt;BR /&gt;size_mb DESC;select * from (&lt;BR /&gt;select obj.name, (sum(reserved_page_count) * 8.0)/1024 as "size in MB",&lt;BR /&gt;((sum(reserved_page_count) * 8.0)/1024)/1024 as "size in GB"&lt;BR /&gt;from sys.dm_db_partition_stats part, sys.objects obj where part.object_id = obj.object_id group by obj.name&lt;BR /&gt;)a&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;DMV (Dynamic Management View) 'dm_db_partition_stats' is not supported.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 19:11:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4918877#M4101</guid>
      <dc:creator>AJAJ</dc:creator>
      <dc:date>2026-01-15T19:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Warehouse Table Size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4919290#M4108</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="694302" data-lia-user-login="AJAJ" class="lia-mention lia-mention-user"&gt;AJAJ&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="0" data-end="548"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="0" data-end="548"&gt;This is expected behavior in Fabric Warehouse and you are not doing anything wrong. The query you found online depends on sys.dm_db_partition_stats, which is a SQL Server DMV and is not supported in Fabric Warehouse. Fabric uses a distributed, serverless SQL engine and only exposes a limited set of system views, so detailed storage allocation information is not available through T SQL. Because of this design, there is currently no supported SQL query that can return the exact size of each table in MB or GB from inside the warehouse.&lt;/P&gt;
&lt;P data-start="0" data-end="548"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="550" data-end="1146" data-is-last-node="" data-is-only-node=""&gt;If you need accurate table storage information, the supported approach is to use the Capacity Metrics app in the Fabric workspace, which shows the actual compressed storage used by warehouse tables. From within SQL, you can still retrieve row counts and column metadata to get a general sense of which tables are larger or smaller, but this should be treated as an estimate only and may not reflect true storage usage due to compression and internal optimizations. In short, the DMV error you are seeing is expected, and using Fabric Capacity Metrics is the correct way to view table sizes today.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 10:04:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4919290#M4108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-16T10:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Warehouse Table Size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4920794#M4117</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="694302" data-lia-user-login="AJAJ" class="lia-mention lia-mention-user"&gt;AJAJ&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to follow up and see if you had a chance to review the information shared. If you have any further questions or need additional assistance, feel free to reach out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 12:17:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4920794#M4117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-19T12:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Warehouse Table Size</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4923011#M4141</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="694302" data-lia-user-login="AJAJ" class="lia-mention lia-mention-user"&gt;AJAJ&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jan 2026 04:29:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/Fabric-Warehouse-Table-Size/m-p/4923011#M4141</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-22T04:29:14Z</dc:date>
    </item>
  </channel>
</rss>

