Forum Discussion
AKUMARKC
5 years agoRegular Visitor
Best Practice. Using sql stored procedure vs importing data from sql server?
Hello, My organization just started utilizing the PowerBI and there are some developments going on. The vendor who is helping us is writing a lot of SQL queries and stored procedures, on the othe...
Anonymous
5 years agoNot applicable
A different approach to running stored procedures will support Direct Query. Consider creating a DQ with something like this as your SQL statement:
DECLARE @return_value INT
EXEC @return_value = pbi.Delightful_Prodcedure @Offset = -7
SELECT 'Return Value' = @return_value;
Anonymous
5 years agoNot applicable