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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Leise
Regular Visitor

Direct Query using Stored Procedure from Azure SQL Database: Incorrect syntax near the keyword.

Hi there,

 

I have an Azure SQL Database that has a Stored Procedure that I need to call using Direct Query.

 

My Stored Procedure has no paramters.

 

I have scoured the forums and I have tried all 3 of the workarounds mentioned below using Advanced Options or Advanced Editor and I still get the following error:

Microsoft SQL: Incorrect syntax near the keyword 'DECLARE'. Incorrect syntax near ')'.

 

The workarounds I have tried are as follows:

 

Workaround # 1

DECLARE @SP VARCHAR(100) = 'SCHEMA.STOREDPROCEDURE'
EXEC (@SP)

 

Workaround # 2

let
Source = Sql.Database("SQL-AZURE-DATABASE", "SQL-AZURE-DATABASENAME", [Query="SELECT * FROM #(lf)OPENROWSET('SQLNCLI','trusted_connection=yes', 'exec SCHEMA.STOREDPROCEDURE')", CreateNavigationProperties=false])
in
Source

 

Workaround # 3

let
Source = Sql.Database("SQL-AZURE-DATABASE", "SQL-AZURE-DATABASENAME", [Query="DECLARE#(tab)@return_value int = 0; #(lf)#(lf)EXEC#(tab)@return_value = [SCHEMA].[STOREDPROCEDURE]; #(lf)#(lf)SELECT#(tab)'Return Value' = @return_value; "])
in
Source

 

Has anyone managed to do this in the above scenario?

 

Many thanks.

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Leise,

 

Try to specify database name inside OPENROWSET.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Burma
Helper I
Helper I

The problem is that behind the scenes Power BI executes

 

select * from (
--your query, e.g. EXEC spReport
) SourceQuery where 1 = 2

 

To test source validity. This is incorrect syntax when query is EXEC

v-chuncz-msft
Community Support
Community Support

@Leise,

 

Try to specify database name inside OPENROWSET.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.