Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
pragna666
Contributor
Contributor

Need Urgent Help with Stored Procedures in Qliksense!

Hi Talented lads and lasses of Qliksense,

I need urgent help while I am trying load SP (Stored Procedure) from within Qliksense. I am encountering the below error :

Capture2.PNG

Below is the query I am trying to execute :

Capture3.PNG

Any help would be extremely useful since I have an important deliverable coming up, thank you so much in advance

7 Replies
Anonymous
Not applicable

Have you looked at this?

'Set NoCount ON' in Stored Procedure

nsetty
Partner - Creator II
Partner - Creator II

Try

SQL exec [Databasename].dbo.CIMS_SELFREPORT_1_DEPTORDETAIL;

pragna666
Contributor
Contributor
Author

I did. But I am not sure where to use the SET ON command 😕

pragna666
Contributor
Contributor
Author

It still gave me the error

vkish16161
Creator III
Creator III

Try this:

A:

Noconcatenate load * Resident YourTableName;

Drop table YourTableName;

Store A into [lib://ConnectionName/YourTableName.qvd](qvd);

Anonymous
Not applicable

This needs to be done in the stored procedure itself.

nsetty
Partner - Creator II
Partner - Creator II

Can you make sure stored procedure executes standalone and as well when you invoke through load editor (from Profiler?)

or

using Debugger... Exec should take some time...

I guess you might have already done the above steps?