Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello, I don't know how to solve the problem that I described below.
I'm loading data from SQL Server and I'm having a problem when loading this data through a gateway in an online environment.
The purpose is not to load all data from SQL database and then use filter but only get the data that interests.
I have all in new version.
Can sameone help me solve this problem?
Thank you very much
Dan
Oh, thank you. Dint know about back folding to the server. Thank you
Hi Dan,
For starters, your method of reducing data in Power BI is incredibly inefficient. You can import your first SQL data into Power Query then perform the transformations you need and these will fold back to the server, so won't ever actually bring in all the data.
Once you have your first list (Table1), you should just be able to buffer Table1[ListColumn] and send it to the second DB within the folded native query by using a table filter something like this:
Table.SelectRows(
Table2PreviousStep,
each List.Contains(List.Buffer(Table1[ListColumn]), [Table2FilterColumn])
)
Secondly, when you say "in the online environment, I can't perform the update", what does this actually mean? Do you get a processing error? An authentication error? Nothing happens? Etc.
Pete
Proud to be a Datanaut!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Check out the July 2026 Power BI update to learn about new features.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.