Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

qvd files

hi

how to create qvd files for qlikview?

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Import table from database or other table files.

     Use store keyword.

     Example:

     Table1:

     Select * from Table1;

     STORE Table1 INTO FilePath\filename.qvd;

     or u can store selective fields

     STORE column1,column2 From Table1 INTO FilePath\filename.qvd;

Hope it helps

Celambarasan

View solution in original post

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Import table from database or other table files.

     Use store keyword.

     Example:

     Table1:

     Select * from Table1;

     STORE Table1 INTO FilePath\filename.qvd;

     or u can store selective fields

     STORE column1,column2 From Table1 INTO FilePath\filename.qvd;

Hope it helps

Celambarasan

jagan
Luminary Alumni
Luminary Alumni

Hi,

Use the below script to create qvd file.

TableName:

SQL Select * from Table; (For SQL database)

OR

TableName:

LOAD * from Datasource; ( For loading data from Excel, CSV, XMLetc.)

STORE TableName INTO QVDName.qvd;

Hope this helps you.

Regards,

Jagan.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

For more on creating QVDs, see http://robwunderlich.com/tutorials/.

-Rob