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

QVD

Hi Guys,

Is There a types of QVD such as Raw QVD and Model QVD

Raw QVD -  QVD with out any Transformation

Model QVD -  QVD with Transformations

I searched in google and found no results, So guys is there a Topic Such as This.

Tanhks In Advance

Regards,

John

1 Solution

Accepted Solutions
engishfaque
Specialist III
Specialist III

Hi John,

There is no concept of raw QVD or Model QVD in QlikView.

We have only one QlikView Data File (QVD), either it is created by Extraction Layer, Transformation Layer, Visualization Layer or created by QlikView Management Console.

We have two mode to read QVD file into QlikView, description and examples are given below,

1. Optimized mode (fastest mode): Loading data straight forward, there is no transformation or any field renaming.

  

    productSales:

    LOAD * Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

2. Standard mode (fast mode): Loading data with performing transformation over the fields or renaming fields.

    productSales:

    LOAD Product as myProductField, Sales as myProductSales Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

Here are the ways to Create QVD file in QlikView,

1. QVD creation by QVW

    productSales:

    LOAD * Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

    STORE Product from productSales into C:\Datastore\QVD\productSales.qvd (qvd);

    OR

    STORE productSales into C:\Datastore\QVD\productSales.qvd (qvd);

    OR

    STORE * from productSales into C:\Datastore\QVD\productSales.qvd (qvd);

2. QVD creation by QlikView Management Console (QMC)

    Inserting the QVD generation script as a task in System > Supporting Tasks > QVD Generation

    Enter information in the Basics and Parameters fields, and click on Apply

Please check,

how to generating the qvd file

Kind regards,

Ishfaque Ahmed

View solution in original post

4 Replies
giakoum
Partner - Master II
Partner - Master II

QVDs are used to store data (1 table) in a Qlik format file.

So it is totally up to the developer if it is raw or transformed data in there.

MarcoWedel

engishfaque
Specialist III
Specialist III

Hi John,

There is no concept of raw QVD or Model QVD in QlikView.

We have only one QlikView Data File (QVD), either it is created by Extraction Layer, Transformation Layer, Visualization Layer or created by QlikView Management Console.

We have two mode to read QVD file into QlikView, description and examples are given below,

1. Optimized mode (fastest mode): Loading data straight forward, there is no transformation or any field renaming.

  

    productSales:

    LOAD * Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

2. Standard mode (fast mode): Loading data with performing transformation over the fields or renaming fields.

    productSales:

    LOAD Product as myProductField, Sales as myProductSales Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

Here are the ways to Create QVD file in QlikView,

1. QVD creation by QVW

    productSales:

    LOAD * Inline [

        Product, Sales

        A, 100

        B, 20

        C, 30

    ];

    STORE Product from productSales into C:\Datastore\QVD\productSales.qvd (qvd);

    OR

    STORE productSales into C:\Datastore\QVD\productSales.qvd (qvd);

    OR

    STORE * from productSales into C:\Datastore\QVD\productSales.qvd (qvd);

2. QVD creation by QlikView Management Console (QMC)

    Inserting the QVD generation script as a task in System > Supporting Tasks > QVD Generation

    Enter information in the Basics and Parameters fields, and click on Apply

Please check,

how to generating the qvd file

Kind regards,

Ishfaque Ahmed

Anonymous
Not applicable
Author

I have not come across this concept but it should be fine if you would like to set that naming convention as a standard in your environment.