Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
noman212
Creator III
Creator III

Oracle Stored Procedure

i have a stored procedure in oracle with 5 param 1 is input and remaining 4 are output how i can execute in qlikview ?

Labels (1)
1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

sql exec  ('[SERVER\XXX].[DBASE].[dbo].[sp_name] $(parameter1),  $(parameter2),$(parameter3),$(parameter4)' ) ;



Regards,

Jagan.

View solution in original post

4 Replies
tresB
Champion III
Champion III

noman212
Creator III
Creator III
Author

what can i do when i have 4 param?

tresB
Champion III
Champion III

You can pass those parameters while calling like:

Sql exec Procedurename Param1,Param2, Param3, Param4;

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

sql exec  ('[SERVER\XXX].[DBASE].[dbo].[sp_name] $(parameter1),  $(parameter2),$(parameter3),$(parameter4)' ) ;



Regards,

Jagan.