Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
tommyl
Creator
Creator

Same table loaded twice while working with QVD

Hello experts,

During the load, my tables are doubled. I am doing a load from qvd:

Table1: 

LOAD

customerid,

name,

.....

from[lib://CRM/customer_activity_details.qvd](qvd);

customer_activity_details:

SELECT

customerid,

name,

....

FROM CRM.customer_activity_details;

STORE customer_activity_details into [lib://CRM/customer_activity_details].qvd(qvd);

 

while loading the data load progress shows:

Started loading data
 
Connected customer_activity_details (QVD (row-based) optimized)
Lines fetched: 23,944,852
customer_activity_details-1 << QueryResult
 
Is it loading the same table twice? Is it wrong? If so how can i fix this? 
 
Thank you for your help...
 
Regards,
 
Labels (1)
3 Replies
simrankaur
Contributor III
Contributor III

I think tables are getting concatenated here.

For concatenate, tables should have the same number of columns and all the columns should have same names, if this is the case, then both your tables are getting concatenated in one.

If you don't want it to happen, then use noconcatenate before loading the second table.

tommyl
Creator
Creator
Author

Hello, 

Thank you for the response Simrankaur. 

I did noconcatenate before each load statement. It didnot work. 

 

Regards,

simrankaur
Contributor III
Contributor III

Can you attach just this part in your qvw so that I am able to troubleshoot better?