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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
ak77
Post Patron
Post Patron

Direct Query Performance

Hi All,

 

i need a help for an existing direct query power bi dashboard.

 

The direct query uses PortfolioCodeParameter as input for the selected PortfolioCode from dashboard and gets the data from a sql.

table.. The total records retrieved once is around 500,000(1/2 million)  and there are 10 measures that are being calculated once data is retrieved,

 

The entire process of completion is taking around 40 seconds..  is there a way to or any settings to improve the performance of this direct query? Please help

 

[Query="SELECT [Level_Code]#(lf) ,[NODE_NAME]#(lf) ,[HEX_VALUE]#(lf) ,[portfolio_code]#(lf)
,[date_from]#(lf) ,[sequence]#(lf)
,[log_portfolio_base]#(lf) ,[log_contribution_base]#(lf)
FROM [look_through_temp_dashboard]

where portfolio_code='" & PortfolioCodeParameter & "'"]

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

 

The total records retrieved once is around 500,000(1/2 million)  and there are 10 measures that are being calculated once data is retrieved,

 

No, not once.  EVERY. SINGLE. TIME.  a user interacts with the report element that uses that data source.

 

Note that there is a hard 1M row limit for Direct Query result sets. You are already at half that limit.  You will want to consider aggregating your data at the source to drastically reduce the amount of data traveling over the nework for each query. 

 

At a minimum you will want to put an index on portfolio_code and make sure the statistics are kept up to date. However you will also want to examine the actual SQL query and add more indexes accordingly.

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

 

The total records retrieved once is around 500,000(1/2 million)  and there are 10 measures that are being calculated once data is retrieved,

 

No, not once.  EVERY. SINGLE. TIME.  a user interacts with the report element that uses that data source.

 

Note that there is a hard 1M row limit for Direct Query result sets. You are already at half that limit.  You will want to consider aggregating your data at the source to drastically reduce the amount of data traveling over the nework for each query. 

 

At a minimum you will want to put an index on portfolio_code and make sure the statistics are kept up to date. However you will also want to examine the actual SQL query and add more indexes accordingly.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors