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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST 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 ?

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
tresesco
MVP
MVP

noman212
Creator III
Creator III
Author

what can i do when i have 4 param?

tresesco
MVP
MVP

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.