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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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

Labels (1)
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
Champion III
Champion III

Hi,

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

Hope this helps

Thanks & Reagrds

rbecher
Partner - Master III
Partner - Master III

Maybe this helps:

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

  STORE...

- Ralf

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine
Not applicable

Try some more easy ;

Why doesn't use the Qlikview Management Console ?

schedule.jpg

its_anandrjs
Champion III
Champion III

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.