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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Large QVDs

I'm working on data-modelling very large QVDs, rest of them look fine but there's one set of QVDs (Distribution data) that si challenging. One QVD is generated for that every month and it's size is almost 300 MB. So far, there are about 15 of them. When I include those in the data model, the QVW becomes very large and takes so long to reload.

Is there a better approach to handle such a situation ?

3 Replies
er_mohit
Master II
Master II

the data which you want from this qvd with making primary key to another table then using left keep or right keep or inner keep to get possible records from this qvd

Tmp:

like

load A,

B

from table Tmp;

left keep

Data_300MB:

load A,

B,

C,

D

from Data_300MB;

hope it helps you

Not applicable
Author

USE

LEFT KEEP

between both table.

Not applicable
Author

HI,

   For the better performance try to perform first Optimised load of the master Qvds ( Fact Table ).

Then try to use where exists()  on the Dimension tables loaded after the fact table keeping the Primary key in the Exist() clause .

Regards

Yusuf