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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
sibideepak
Creator II
Creator II

concatenate issue in application

Hi all,

I have a table which I used to concatenate to another table ..after reload it shows full table but after saving and reopened the concatenated table is lost ..no data regarding to that table is available...

can anyone help regarding this issue ..!!

Thanks in advance !!

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Can you share the piece of script?

sibideepak
Creator II
Creator II
Author

B:

NoConcatenate

LOAD *

,Key as Key1

Resident A;

DROP Table A;

Concatenate(B)

LOAD Key,

     Value1,

     Value2

FROM

[Temp.qvd] (qvd) Where not Exists(Key1,Key);

this is the logic I applied ... it works sometimes but troubles many times ..how the work logic changes randomly i'm confused !!

alexandros17
Partner - Champion III
Partner - Champion III

Change the script in this way and tell me what is changed:

B:

NoConcatenate

LOAD *

,Key as Key1

Resident A;

DROP Table A;

C:

NoConcatenate

LOAD Key,

     Value1,

     Value2

FROM

[Temp.qvd] (qvd) Where not Exists(Key1,Key);

Final:

Noconcatenate

Load * resident B;

concatenate

Load * resident C;

drop tables B, C;

timanshu
Creator III
Creator III

what is the table A?