QVD Utils
Purchase- High read/write performance
- Ideal for automation and batch processing
- Save Qlik resources by offloading processes
- Improve data load times by integrating load processes into standard ETL
- Can be used with other EVL Microservices, or integrated into pre-existing solutions
Convert .qvd files online
Convert between .qvd and .csv files with our online utility
Go to qvdconvert.comPricing
(read column subset)
Command Line Utilities
qvd-header – Retrieve information from QVD header: number of records, field names as JSON, etc.
csv2qvd – Convert CSV to QVD.
qvd2csv – Convert QVD to CSV.
CSV to QVD Conversion Example
Example input CSV file with header, and semicolon separated fields:
ID | Name | Code | Price | Created |
1 | item_11 | 11 | 15,85 | 2016-05-04 |
2 | item_12 | 12 | 21,25 | 2019-11-11 |
3 | item_13 | 13 | 12,99 | 2019-10-05 |
Run:
csv2qvd will use the field names present in the header, and data types derived from the values, to produce an output file named table.qvd.
There are several options to change the default behaviour. You can specify your field names when there is no header in the CSV for example:
QVD to CSV Conversion Example
A CSV file can be created from a QVD file, with the above mentioned structure, by running:
qvd2csv will use the field names present in the QVD header to create an output file named table.csv with header, and colon separators.
There are several options to change the default behaviour. Specify different field separators, add Windows end-of-lines, and specify format for dates:
Get metadata from QVD
Get number of records:
Get the list of fields with their data types in JSON format:
Estimated data types can be manually changed via declarations in the EVD file (EVL data definition file). See the whitepaper or documentation for details.