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: 
Nemo1
Creator II
Creator II

How to save what I coded in the data load editor as a qvd file?

this may be a stupid question, but I concatenated some data in my data load editor and I wanna use this to concatenate it with another qvd file..

 

how can i save what i coded as a qvd file? so i could concanenated with more data?

 

tjhanks!!

17 Replies
Nemo1
Creator II
Creator II
Author

Hello Anil, 

 

thanks for your answer 🙂

 

The script that I want to save looks basically like this:

Daten:

Load

A1

A2

A3

A4

........

FROM [lib://***********************************/Vacation_2017.qvd]
(qvd);

Concatenate (Daten)

Daten_2018

Load

A1

A2

A3

A4

........

FROM [lib://***********************************/Vacation_2018.qvd]
(qvd);

 

The script I can run it with no problems... It loads! 

I just cannot save it

 

greetings

Antoine04
Partner - Creator III
Partner - Creator III

If you want to save this as qvd, then you need to write :

Store Daten into 'lib://DataFiles/Daten.qvd'(qvd);

Because the name of the table you want to save is "Daten"

Nemo1
Creator II
Creator II
Author

Hello Antoine,

 

it looks like this:

 

The script that I want to save looks basically like this:

Daten:

Load

A1

A2

A3

A4

........

FROM [lib://***********************************/Vacation_2017.qvd]
(qvd);

Concatenate (Daten)

Daten_2018

Load

A1

A2

A3

A4

........

FROM [lib://***********************************/Vacation_2018.qvd]
(qvd);

 

The script I can run it with no problems... It loads! 

I just cannot save it

 

greetings

Anil_Babu_Samineni

@Nemo1 How is your model looks like? And is both tables visible in your model this case? "Daten" and "Daten_2018"?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Antoine04
Partner - Creator III
Partner - Creator III

Is "Daten" the table you want to store ?

If yes then : 

Store Daten into 'lib://DataFiles/Daten.qvd'(qvd);

Because the name of the table you want to save is "Daten"

Nemo1
Creator II
Creator II
Author

You are my hero, thanks! it did work! 😄 😄 😄 😄 😄 

RamanaKumarChintalapati
Partner - Creator
Partner - Creator

Hi @Nemo1 ,

Please follow below script for Saving file into QVD:

 

 

 

//QVD File making


LOAD
CurrencyKey,
CurrencyAlternateKey,
CurrencyName
FROM [lib://QVD File Making:DataFiles/Currency.xlsx]
(ooxml, embedded labels, table is Currency);

Store Currency into [lib://QVD File Making:DataFiles/Currency.qvd];

 

Hope it Helps you!!!

Thanks!!

 

Antoine04
Partner - Creator III
Partner - Creator III

You're welcome ! 

Do not hesitate for more questions 🙂

Regards,

Antoine