Forum Discussion
Improve performance Power BI desktop for report server
- 2 years ago
Data volumn grows expotentially (1 million rows appended each day)No need to embellish this - you can call it a linear growth if it is one.
Keep track of the queries issued by your report server against your SQL data source, and optimize your database for these queries. Make sure indexes and statistics are updated after each substantial insert.
Consider loading your data into an SSAS cube or a SSAS Tabular instance, and accessing it via live connection. That way you can emulate the incremental refresh feature of the Power BI service.
Data volumn grows expotentially (1 million rows appended each day)
No need to embellish this - you can call it a linear growth if it is one.
Keep track of the queries issued by your report server against your SQL data source, and optimize your database for these queries. Make sure indexes and statistics are updated after each substantial insert.
Consider loading your data into an SSAS cube or a SSAS Tabular instance, and accessing it via live connection. That way you can emulate the incremental refresh feature of the Power BI service.
- lightknight2 years agoNew Member
Thank you lbendlin