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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading with * from Stored Procedure

i have a stored procedure on sql.

I am calling the procedure.

But there are about 100 columns of result.

so i want to load thoose results with * char.

The qlikview script code is like below:

Table1:

Add Load *;

SQL EXEC dbo.SampleProcedure @CompaignName = 'sampleData';

it doesnt load by this way.

but when i write:

Table1:

Add Load column1;

SQL EXEC dbo.SampleProcedure @CompaignName = 'sampleData';

it loads to data.

The thing is i just don't want to write all of thoose columns.

Thanx

2 Replies
Anonymous
Not applicable
Author

Have you tried this?

Table1: 

Add Load column1, *; 

SQL EXEC dbo.SampleProcedure @CompaignName = 'sampleData'



Not applicable
Author

i've tried just right now, but unfortunately not working

OLEDB read failed