Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

if we try to load same table twice what will happen to qlikview?

Hi Friends,

Thanks&Regards

Ramesh

3 Replies
israrkhan
Specialist II
Specialist II

it will be concatenated in the previous table.

and you will see double values for each row...

Anonymous
Not applicable
Author

As mentioned above it will concatenate into one table. You can avoid the concatenation by renaming the fields which will mean you end up with two tables. 

its_anandrjs

You get single table if same fields and name is also same and if values are same then you see double values. But if you use NoConcatenate then table not concatenated but synthetic table created see more in the example.

LOAD * Inline

[

A,B,C

121,324,545

];

NoConcatenate

LOAD * Inline

[

A,B,C

34,35,78

121,324,545

];