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

Create QVD in my desktop

HI

i am trying to create qliksense QVD in my local desktop

i am trying as

tablename:

Load * from table1;

store tablename into tablename.qvd // got error


Also tried as below , got error again. Can some one help

tablename:

Load * from table1;

store tablename into C:/QVD/tablename.qvd // got error

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

you can do as below:

STORE table1 into [lib://QVD/table1.QVD] (qvd);

STORE table2 into [lib://QVD/table2.QVD] (qvd);


table3:

noconcatenate

load * resident table1;

concatenate

load * resident table2;


STORE table3 into [lib://QVD/table3.QVD] (qvd);


View solution in original post

13 Replies
Chanty4u
MVP
MVP

did you created Qvd folder ?

Anonymous
Not applicable
Author

HI

yes

under C folder i have created a folder QVD and trying to store qvd there

agigliotti
Partner - Champion
Partner - Champion

let's try as below:

store * from tablename into (qvd);

Anonymous
Not applicable
Author

hi,

ty

i created another QVD folder again under QVD, it worked as below

STORE table1 into lib://QVD/QVD/table1.qvd;

STORE table2 into lib://QVD/QVD/table2.qvd;


now i have 2 issues

but when  i am checking them they are in word format.

can you help me here

Anonymous
Not applicable
Author

using this  2 QVD's , how can i create another QVD which is combination of this two QVD's

STORE table1 into lib://QVD/QVD/table1.qvd;

STORE table2 into lib://QVD/QVD/table2.qvd;

can  you suggest

Chanty4u
MVP
MVP

try this

STORE tableNameINTO [lib://QVDFolder/TableName.QVD] (qvd);

Anonymous
Not applicable
Author

using this  2 QVD's , how can i create another QVD which is combination of this two QVD's

STORE table1 into lib://QVD/QVD/table1.qvd;

STORE table2 into lib://QVD/QVD/table2.qvd;

can  you suggest

Chanty4u
MVP
MVP

try

STORE tableName  INTO [lib://QVD/TableName.QVD] (qvd);

Anonymous
Not applicable
Author

using this  2 QVD's , how can i create another QVD which is combination of this two QVD's

STORE table1 into lib://QVD/QVD/table1.qvd;

STORE table2 into lib://QVD/QVD/table2.qvd;

can  you suggest