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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

is automatic qvd generation possible ????

Is there any way so that a new QVD can be generated on daily basis with new name.

This has to be done from same data source.

It possible manually but is there any way so that it may be done automatically on daily basis.

6 Replies
tresesco
MVP
MVP

I did not try it , but you may try this way: get the QVD generation application scheduled daily. Now use a variable to get dynamic value like current date (using Today() function) or whatever you want to put as a part of QVD. then use this variable as a part of QVD name in your STORE command.

Regards, tresesco

Not applicable
Author

Hi Tresesco,

Thankx for the quick response but its not working at my end , i hope some problem in script.

can you please help me out by writing the script what i have to use for the same.

jonathandienst
Partner - Champion III
Partner - Champion III

Ashwin

I suggest that you try something like the following:

Let vDailySaveName = 'DailySave' & Date(Today(), 'YYYYMMDD') & '.qvd';
Store DataTable INTO [$(vDailySaveName)];

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
tresesco
MVP
MVP

Try:.....

Let VDate=Date(Today(),'DD-MM-YY');

Store FinalTable Into '$(VDate).qvd' (Qvd);

Not applicable
Author

Thanks to both of you , I hope this will work !!!!

Big Smile

suniljain
Master
Master

Dear Ashwin,

You can generate QVD automatically with the help of macros.

Regards

Sunil