Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
maniram23
Creator II
Creator II

Daily Qvd's Generation

Hi Experts,

How to generate the Daily base Qvds. As well as monthly qvd.

Regards,

2 Replies
prashanth1712
Contributor III
Contributor III

Hi,

Use store and load daily basis.. and for monthly May be u have to load the monthly data.

MayilVahanan

Hi

Try like this

Daily Qvd:

Let vFreezeTableName = 'Daily_'&Date(Today(),'MMDDYYYY');

$(vFreezeTableName):

LOAD * from yourdatasource;

//Store freeze data into qvd

STORE $(vFreezeTableName) into $(vFreezeTableName).qvd(qvd);

monthly qvd:

If Floor(MonthStart(Today())) = Floor(Today()) Then

Let vFreezeTableName = 'Monthly_'&Date(Today(),'MMDDYYYY');

$(vFreezeTableName):

Load * from

Yourdatasoure;

//Store freeze data into qvd

STORE $(vFreezeTableName) into $(vFreezeTableName).qvd(qvd);

ENDIF;

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