Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
govardhana_r
Contributor II
Contributor II

Execute stored procedure in qliksense

I am trying to execute a procedure to pull the data to qliksense however I am unable to connect. I get the below error

Load
*;
SQL EXEC qlik.sp_getTestData;

 

govardhana_r_0-1675918671298.png

However the procedure exists in the DB and I am getting results when running from the SSMS

 

Labels (1)
2 Replies
Vegar
MVP
MVP

Are you able to load a normal table from that database?

How does the FROM ... look like when you do that?

Could  it be that your missing important info in your FROM adress? Like dbo. or something else?

Load
*;
SQL EXEC qlik.dbo.sp_getTestData;

 

Make also sure that you are connected to the correct Qlik DataConnection, so that you don't  try to run on the wrong database server.

govardhana_r
Contributor II
Contributor II
Author

Thanks Vegar. I had to add Database name to the query and then it worked

dbname.qlik.sp_getTestData