Forum Discussion

elcapitano's avatar
elcapitano
Regular Visitor
4 years ago
Solved

Import and Direct Query Load question

Hi all, data modelling question here.   I have a client with a large dataset where the main fact table is quite large (~1gb). We want to try doing a reload where we Import load the fact table up to...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi elcapitano ,

     

    With import connection mode from the source will be loaded into Power BI. Loading in Power BI means consuming memory and disk space. As long as you are developing Power BI on your machine with Power BI Desktop, then it would be memory and disk space of your machine. When you publish the report into the website, then it will be memory and disk space of Power BI cloud machine.

    DirectQuery is a direct connection to data source. Data will NOT be stored in Power BI model. Power BI will be a visualization layer, then query the data from data source every time. Power BI will only store metadata of tables (table names, column names, relationships…) but not the data. Power BI file size will be much smaller, and most probably you never hit the limitation of the size because there is no data stored in the model.

    Import Data

    Advantages

    • Fastest Possible Connection
    • Power BI Fully Functional
    • Combining Data from different sources
    • Full DAX expressions
    • Full Power Query transformations

    Disadvantages

    • Power BI file size limitation (It is different for Premium)

    DirectQuery

    Advantages

    • Large Scale data sources supported. No size limitation.
    • Pre-Built models in some data sources can be used instantly

    Disadvantages

    • Very Limited Power Query functionality
    • DAX very limited
    • Cannot combine data from multiple sources
    • Slower Connection type: Performance Tuning in the data source is MUST DO

     

    If you want more details about import and DirectQuery, please kindely refer to

    DirectQuery, Live Connection or Import Data? Tough Decision! - RADACAD.

     

     

    Best Regards,

    Stephen Tao

     

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