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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
coloful_architect
Creator II
Creator II

* does not work at resident table

I have table A and table B, wanna append table B into table A and create a final table C with a conditional filter set at one filed at table B;  here is what I have now 

Table A:

load

field one

filed two

filed three

left Join Table B:

load 

field one

field four ( the one I wanna set a condition)

 

Table C:

load *

resident table A

where field four ="xxx"

drop Table A

 

it results in nothing....no table and data loaded....but it works if I list all those fields rather than simply using star * ...

but wondering why?  why  * here does not work ? is * supposed to get me all fields ?

or maybe there is a smarter way? all I need is to stack table B into table A and from there to set a condition filter on the field at table B.

thanks 

 

 

 

Labels (2)
1 Solution

Accepted Solutions
Or
MVP
MVP

When you load * from a resident, what will happen is that this will result in the exact same list of fields. When Qlik sees that, it assumes this is the same table and the results will be concatenated. Therefor, in this scenario, you want to use

TableC:

NOCONCATENATE Load *

Resident table A;

 

View solution in original post

1 Reply
Or
MVP
MVP

When you load * from a resident, what will happen is that this will result in the exact same list of fields. When Qlik sees that, it assumes this is the same table and the results will be concatenated. Therefor, in this scenario, you want to use

TableC:

NOCONCATENATE Load *

Resident table A;