Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Bo23ny
Contributor
Contributor

How to reference/Duplicate the same data source

Hi all,

I am familiar with power Bi but very new to QlikView and is currently struggling with a Client project. In power Bi we could duplicate/reference a data source. Does Qlik have a similar functionality or in other words is it possible to perform the same in QLIk. 

I tried loading the same data source twice through the data load manager, but it seems to keep overwriting the  previous import. 
Any help is much appreciated. 

Labels (4)
2 Replies
BrunPierre
Partner - Master
Partner - Master

Hi,

When two or more loaded tables have exactly the same field names and the number of fields, the data from each LOAD or SELECT statement is automatically merged into one table. I believe you're experiencing this, to prevent this, you must explicitly use the NoConcatenate statement between the tables.

Table1:
LOAD a, b, c
FROM table1.csv;

NoConcatenate
Table2:
LOAD a, b, c
FROM table2.csv;

Bo23ny
Contributor
Contributor
Author

Hi 

BrunPierre,

Thank you for the response. I will def try this. Also, is there any YouTube or Qlik tutorial which you would recommend to refer for learning how to load data through the data load editor?

I am currently using the data manager to add the data.

Thanks in Advance
PREVIEW