Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD Implement Load

Hi All,

Can someone please tell me why my implement load keep failing? Even when I comment out the variable vLastRunTime and the QVDs to implement load on and just store small table QVDs....it still fails. I'm attaching my scripting for the QVDs.

Any help would be appreciated.

Thanks in Advance,

32 Replies
satishkurra
Specialist II
Specialist II

Hi

As we cannot reload the file, could you please help us in understanding what is the error it throws...

Not applicable
Author

Hi,

Thanks for the reply. It doesn't even reload the first table correctly.

Capture.PNG

Capture1.PNG

sunny_talwar

Are you talking about Incremental load?

Chanty4u
MVP
MVP

please post ur error?

sunny_talwar

Check if this is a valid location

$(vQVDLocation) -> ..\Data

Not applicable
Author

Hi,

For the large tables I'm doing a incremental load but for the small tables I'm doing a regular QVD storage.

Even after changing the QVD location it still gives error.

Capture.PNG

Capture1.PNG

sunny_talwar

Can you try this:

LET vLastRunTime = Date(Today(), 'DD-MMM-YYYY');

ODBC CONNECT TO ExcessionProd;

CustomerCuration:

SQL SELECT *

FROM "rbc_dw"."open".dim1customercuration

Where updatedate > '$(vLastRunTime)';

Concatenate(CustomerCuration)

LOAD *

FROM

(qvd)

where not exists (pkdim1customercuration);

STORE CustomerCuration INTO CustomerCuration.qvd (qvd);

This will save the QVD in the same location as your QVW. If this works, then I would check if you have write access to the other locations.

satishkurra
Specialist II
Specialist II

Hi

Please check manually if the below statement is returning any results from DB.

SELECT *

FROM "rbc_dw"."open".dim1customercuration

Thanks

Satish

Kushal_Chawda

try changing all store commands. Remove '\'

STORE INTO $(vQVDLocation)CustomerCuration.qvd;

if not working put the store path manually like below

STORE INTO D:\Data\CustomerCuration.qvd;