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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Overwrite QVD files

Hi,

I need to overwrite the data in a particular field of a QVD file.

Say the field name is Year and contains 2010,2011,2012 and i need to replace by 2012,2013,2014 resp.

thanks

Labels (1)
3 Replies
maxgro
MVP
MVP

pseudo code

load

     year + 2 as year

     ...

from

     yourqvd

store your qvd

ashfaq_haseeb
Champion III
Champion III

HI,

Try something like this

Load

F1,

Year+2 as Year,

F2,

.

.

.

Fn

From 2010.qvd

store 2010 to 2012.qvd(qvd);

Regards

ASHFAQ

jagan
Partner - Champion III
Partner - Champion III

Hi Deepak,

Try like this

TableName:

LOAD

Field1,

Field2,

Field3,

.

.

.

year + 2 as year

From QVDName.qvd (qvd);


STORE TableName INTO QVDName.qvd;


DROP TABLE TableName ;


Hope this helps you.


Regards,

Jagan.