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: 
srinivasa1
Creator II
Creator II

QVD

Hi

How to store qvd on only on Monday of week. (how i can write ETl script for store QVD on Monday of week)

Pl guide me best way to achieve this.

Thx

8 Replies
Nicole-Smith

IF WeekDay(today()) = 'Mon' THEN

     STORE YourTable INTO YourQVD.qvd (qvd);

ENDIF

srinivasa1
Creator II
Creator II
Author

Its not wokring for me WeekDay(today())  do you tink do i need to use pick funcation for retrive week day?

its_anandrjs

Hi,

Why not you schedule your reload time on every Monday and create those QVD.

Hope this helps

Thanks & Reagrds

rbecher
MVP
MVP

Maybe this helps:

IF Num(WeekDay(Today())) = 0 THEN

  STORE...

- Ralf

Astrato.io Head of R&D
Not applicable

Try some more easy ;

Why doesn't use the Qlikview Management Console ?

schedule.jpg

its_anandrjs

Hi,

If QEMC is not available you can do this way also

You can load this way also

LET vWeekday =WeekDay(Today());

IF $(vWeekday) = 'Tue' then

Temp1:

Load *,

Resident Temp;

STORE Temp1 INTO Temp1.qvd (qvd);

ENDIF

Hope this helps

Thanks & Reagrds

Nicole-Smith

It's working for me.  Are you sure you have the IF and THEN on the same line?

Not applicable

Produce the QVD from a "QVD Loader" qvw that runs only on a Monday - scheduled via the QMC.

I do this weekly for a couple of storage apps I run.