Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
niana-varma
Contributor II
Contributor II

How an show the details of calling stored procedure for the automated report: Qliksense

I am running a 5 input parametrized stored procedure for the automated QLIK Sense report. Now I tried to execute this for the QLIK Sense but I couldn't find any relevant resource which can show the details of calling the stored procedure.

niana
1 Reply
Channa
Specialist III
Specialist III

sql EXEC procedure name

 

if you have any parameters

sql exec procedure;

@country='india',

@year='2019'

try

Channa