Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am new to qlikview and have been having loads of fun creating dashboards.
I am collecting data from lots of locations, one in USA but most around the UK.
Because this data is spread out, in the past it has been very slow to get the data for scheduled reports, but as we are now collecting this data into QVD files and constantly updating them, I would like to be able to access this collected data from the QVD on our local network but outside of Qlikview. IE Crystal Reports, Ms Access.
Does a ODBC driver for qvd files exist?
I don't think it was covered on the Designer or Developer courses.
Many thanks in advance.
When you use store to create the QVD files you have the option to store the data as csv in a text file as well.
This is not as efficient as QVD but is one option as the csv file can be opened by other applications.
store data_table into data.qvd (qvd) ;
store data_table into data.csv (txt) ;
When you use store to create the QVD files you have the option to store the data as csv in a text file as well.
This is not as efficient as QVD but is one option as the csv file can be opened by other applications.
store data_table into data.qvd (qvd) ;
store data_table into data.csv (txt) ;
Pretty sure you can get QVD's read into a database using an etl importer - each file has an XML header along with a symbol table and the actual data table so in theory it's possible...
Just a pity a qvd isn't backward compatible to Excel
Can't you change the extension from qvd to qvx to read from another odbc connector.
Hi Pejay,
I'd also urge you to think about security aspects whilst relying on the QVD files. QlikTech doesn't provide a shell to protect the QVD files and you have to rely on the OS. So please think about the security whilst relying QVD files as the source for other systems.
Thanks,
DV
www.QlikShare.com
Hi Pejay,
we provide at least a Java lib and JDBC driver to process/read QVD files externally independent from QlikView. To develop an ODBC would be possible from my point of view but would need some efforts, of course..
- Ralf
Thank you all for your help so far.
I think the QVX idea is worth looking into. Didn't know about them.
I have just downloaded the QlikView QVX File Format.pdf file and will take a look on how to use them.
The filepath is locked down on our network paths so security should be fine.
I'm not sure how to save to QVX. Anyone know?
I currently use the store command but this outputs to QVD or CSV only.
Nothing in F1 help on how to save to QVX files.
I have looked through the forums but have not yet found any info on how to save to QVX format.
Hi
If you mean the store command in script, just use (qvx) as the file file type qualifier
STORE data into MyFile.qvx (qvx);
HTH
Jonathan
Thanks Jonathan,
I did check the F1 help file and it said that the Store only did QVD and TXT.
format-spec ::= ( ( txt | qvd ) )
Is there an updated help file that I should be looking at to find this info out.?