Home > Enterprise >  Connect to a stored procedure with parameters on a server in PowerBI
Connect to a stored procedure with parameters on a server in PowerBI

Time:05-13

I wrote a stored procedure which takes in a given string from an user (within the report) as a parameter and searches through tables and attributes (Information Schema) stored on a SQL server in Azure. I'd like to display the results in PowerBI desktop w/o the need of downloading all the data/bd. I don't have an access to PowerBI embed. Is that possible?

CodePudding user response:

Paginated Reports (aka SSRS reports, aka RDL Reports) can do this.

But Power BI Reports would need to load all the data into the Power BI DataSet, or refer to the underlying tables/views in DirectQuery for interactive filtering.

  • Related