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: 
RutiTaumanRubin
Creator
Creator

Execute PL\SQL Procedure in QlikSense

Hello,

I want to execute strode procedure from load script in qliksense (I have oledb connection to the database)

I try to write the following syntax:

SQL Execute TRY();

but it didn't work...

Could you please help?

Thank you!

3 Replies
devarasu07
Master II
Master II

Hi,

Try like below,

LIB CONNECT TO 'BI_WHS';

Students:

load *;

SQL exec dbo.Students;

Store * from Students into 'lib://QVD/Students.qvd';

Hope this helps you

Regards,

Deva

RutiTaumanRubin
Creator
Creator
Author

Hi,

Thanks for your quick response,

I try to run oracle procedure (not sql server) ,

The procedure only update table in the database...



MMann
Contributor
Contributor

Hi,

according to: https://community.qlik.com/t5/Knowledge/Calling-a-stored-procedure-or-function-in-Oracle-from-QlikVi...

Use the function CALL to specify the name of the stored procedure.