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: 
skr002244
Contributor III
Contributor III

How to import a QVD file into R ?

I want to import a QVD file into the R Console.I'm new to both the softwares.Can anyone help me out ?

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:

T1:

LOAD * FROM MyQvdFile.qvd (qvd);

STORE Table T1 into MyCSVFile.csv (txt);

The result is a csv file with the name MyCSVFile.csv


talk is cheap, supply exceeds demand

View solution in original post

5 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:

T1:

LOAD * FROM MyQvdFile.qvd (qvd);

STORE Table T1 into MyCSVFile.csv (txt);

The result is a csv file with the name MyCSVFile.csv


talk is cheap, supply exceeds demand
skr002244
Contributor III
Contributor III
Author

Thanks

Not applicable

I have a problem on T1; it dosn't work

Not applicable

Table is not on script. It is ok:

STORE T1 into MyCSVFile.csv (txt);

tjardine
Contributor
Contributor

I have not tried this yet. https://github.com/JoseEchave/qlikviewr