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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Tables volume of data

Hi to everybody, 

 

I have a client who wants to know which data size are we loading on Power BI. Is there a way to know the size of the table in Power BI (like when you consult Properties to know a file size)?


Thanks in advance, 

 

Alejandro

2 ACCEPTED SOLUTIONS

@Anonymous are you familiar with dax studio and its view metrics feature?

View solution in original post

@Anonymous yep, table sizes, column sizes and much much more 🙂 I believe this is what you were looking for 🙂
I'm adding here some good playlists to start from:
https://www.youtube.com/watch?v=gZ4JcqFwJfg&list=PLU6II7MW-aiJ3Z-wbUQ0tkqSbAkyiB3uy

Also, a parralel tool with an excel interface:
https://www.youtube.com/watch?v=p8M7TDiXfxU&list=PLU6II7MW-aiI5A2FjtlVx0yVm3AezOjYr

I will start with DAX studio anyway.


2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png  SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

View solution in original post

6 REPLIES 6
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

Agree with @SpartaBI that you need use DAX Studio.

 

1. In DAX studio ,select the PBI Desktop file you have opened:

Eyelyn9_2-1652927143607.png

Then execute such SQL statement that will fetch the table size information:

SELECT dimension_name AS tablename,

attribute_name AS columnname,

datatype,(dictionary_size/1024) AS size_kb

FROM $system.discover_storage_table_columns

WHERE dictionary_size > 0

Eyelyn9_4-1652927414463.png

 

For more information, please kindly take a look at the blogs:

Data Model Size with VertiPaq Analyzer - SQLBI

Extract Table Size from Power BI Desktop Using DAX Studio - Excelerator BI

 

 

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

PC2790
Community Champion
Community Champion

Anonymous
Not applicable

Hi @PC2790 , 

 

It's similar to my problem, but the thing that I want to know is the size of each table in the dataset, not the size of the dataset. I don't know if this is possible. 

 

Anyway, thanks for the info. It could be useful for the client. 

 

Regards, 

 

Alejandro

@Anonymous are you familiar with dax studio and its view metrics feature?

Anonymous
Not applicable

No, but I will investigate in that way if there is the possiblity to know about tables size

@Anonymous yep, table sizes, column sizes and much much more 🙂 I believe this is what you were looking for 🙂
I'm adding here some good playlists to start from:
https://www.youtube.com/watch?v=gZ4JcqFwJfg&list=PLU6II7MW-aiJ3Z-wbUQ0tkqSbAkyiB3uy

Also, a parralel tool with an excel interface:
https://www.youtube.com/watch?v=p8M7TDiXfxU&list=PLU6II7MW-aiI5A2FjtlVx0yVm3AezOjYr

I will start with DAX studio anyway.


2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png  SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors