Forum Discussion

SaiK's avatar
SaiK
Icon for Helper I rankHelper I
1 year ago
Solved

100 GB data on AWS Workspace

I have approx 100GB dataset in Power BI. I am importing this data from MySQL DB.An issue here is am unable to import the entire data because of the size.How do I workabout this issue? I am also usin...
  • danextian's avatar
    danextian
    1 year ago

    Pre-aggregate means to summarize the data using GROUP BY instead of loading all rows. For example instead of loading by transaction id or transaction lines, group the rows by a certain column.

  • SaiK's avatar
    SaiK
    1 year ago

    Ohh yess, that is something I could do. Instead of applying the measures after importing shall apply GROUP BY before importing. Thanks a lot!!