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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
ShirinArshadnia
Helper II
Helper II

Having multiple Table retured from a stored procedure into power Query

Hi everyone,

is there any solution to have multiple Table retured from a stored procedure into power Query?

I have a SP and it will load only  the first returened table and i Need all of them,

is there any solution or I should seperate them in another Stored procedure?

 

many thanks in advance

2 REPLIES 2
ShirinArshadnia
Helper II
Helper II

Thank You so much

but all returned dataset are not in the same table structure.

ThxAlot
Super User
Super User

It's, so far, the intrinsic limitation of PQ to receive only the first dataset returned by SP. A workround is tweak the SP as follows, if all returned dataset of the same table structure,

 

CREATE OR ALTER PROC sp_xxx
AS
BEGIN

-- First resulting dataset
SELECT * FROM XXX1

UNION ALL
-- dataset delimiter
SELECT 'DELIM','','',...

UNION ALL
-- Second resulting dataset
SELECT * FROM XXX2

END

 



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LeanAndPractise(Everyday)


)



Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors