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

QVD Creation

Hi All,

How to create QVD files, Different ways to create a QVD

SRS

Labels (1)
29 Replies
Not applicable
Author

Hi,

I use semicolon there but not work.

SRS

janardhan
Creator
Creator

Save it first and do reload it will work

Not applicable
Author

Hi,

I save it and reload it but not work my scrpt is this

Table1:

load * from

D1;

store Table1 into Table1.qvd;

Table2:

load * from

D1;

store Table2 into Table2.qvd;

SRS

janardhan
Creator
Creator

try like this

Table1:

load * from

D1;

store Table1 into Table1.qvd;

drop table Table1;

Table2:

load * from

D1;

store Table2 into Table2.qvd;

drop table Table2;

its_anandrjs
Champion III
Champion III

Hi,

Use some thing like this in the script

Table1:

load * from

D1;

store Table1 into Table1.qvd;

Table2:

NoConcatenate

load * from

D1;

store Table2 into Table2.qvd;

Regards,

Anand

nilesh_gangurde
Partner - Specialist
Partner - Specialist

Hi sanjay,

Attach a sample qvw file.

Regards,

Nilesh Gangurde

Sokkorn
Master
Master

Hi,

I try your script and working for me. Let see in the attached files.

Edit: Put all files in the same folder.

Regards,

Sokkorn

Not applicable
Author

Hi,

But it create synthetic keys.

SRS

its_anandrjs
Champion III
Champion III

Hi,

If you not need the loaded tables so delete it and use the QVD files.

Regards,

Anand

rotero
Creator
Creator

may i ask... is there an effect of you issue drop table after the store statement?

and also what is nonconcaatenate use for?