Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QVD creation efficiency

I currently use the below 3 step process to create qvd. My guess is that this 3 step process could be improved by something along the lines of 'select .....from.... into file.qvd', which is a single step process. Any thoughts?

Thanks,

Dinesh.

[table_x]:

select column_a

    , column_b

from table_x

;

STORE table_x into table_x.qvd;

DROP table table_x;

2 Replies
nagaiank
Specialist III
Specialist III

The syntax of 'SELECT' in QlikView script is:

select [ all | distinct | distinctrow | top n [ percent ] ] *fieldlist

from tablelist

[ where criterion ]

[ group by fieldlist [ having criterion ] ]

[ order by fieldlist [ asc | desc ] ]

[ ( inner | left | right | full ) join tablename on fieldref = fieldref

]

It does not include using 'INTO'

Anonymous
Not applicable
Author

I know!!! probably more of a gripe from me!! Maybe in the future enhancements !!!