Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
ashish1504
Contributor III
Contributor III

How to Generate QVD after every reload

Hi Can anyone help with How to generate QVD file after every reload.

I am trying to do but getting and error

"

Semantic error

call StoreAndDropTable ('A_PRODUCT','QVD\A_PRODUCT')

"

Below is the statement i have used.

"call StoreAndDropTable ('PRODUCT','$(PathQVD)PRODUCT');"

 

Labels (1)
3 Replies
Vegar
MVP
MVP

StoreAndDropTable is not a built in functionality. You need to have a sub named StoreAndDropTable to run your script as it is.

However you could try to do this instead:

Store PRODUCT into $(PathQVD)PRODUCT.qvd (qvd);

Drop table PRODUCT;

ashish1504
Contributor III
Contributor III
Author

Hi @Vegar ,

I have tried your suggestion but it is not working. 

Can you tell me how to do this "StoreAndDropTable is not a built in functionality. You need to have a sub named StoreAndDropTable to run your script as it is."

 

Because i am new in QlikView. Thank you in advance

MayilVahanan

Hi

StoreAndDropTable  not built-in functionality.

However its sub routine.

Sub..end sub ‒ QlikView

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.