Forum Discussion

smintos's avatar
smintos
Frequent Visitor
9 years ago
Solved

Best / Fastest Data Storage with powerBI

Hi, so far we´ve used imported data (into pbix) to work with. Really fast, quite impressive. Now we´re tackeling the 1GB pbix file size limit and also the lack of refresh option when using power bi ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    smintos Many people just intermix the two and call them both Direct Query... I don't because there is a difference in how they work. The live connection doesn't have to transform your DAX queries into SQL and pass those back and forth to the database of origin. It connects directly to the Tabular model and works directly off of the "In Memory" model.

    Direct Query - Will transform what you are doing in the model to the language of the database. SQL in this instance. Then hits the DB, and returns the information. This relys on the underlying structure of the DB to return the information quickly, there is more than likely some more complexity to this connection, but you get the idea.

     

    Yes, 2016 SQL Server Standard has the option to use SSAS Tabular with limitations..

    The setup of SQL SSAS would be a standard implementation, there is no need to adjust anything specifically for Power BI. You would just connect to the instance. Tabular models would require a Visual Studio license in order to build them though...

    You create the model in VS and deploy it to the SQL SSAS Tabular instance.