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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Uma7
Contributor III
Contributor III

Creation of Partitioned QVD files

Hi,
i have 72 million records in a table t1 which i want to partition based on a field 'type' and store as partitioned qvd files to load and create sheets.

How can i do this?
Thanks in advance!

1 Reply
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

 

You can try to loop over type field, like :

For each vType in FieldValueList('type')

  TMP:
  NoConcatenate
  Load
    *
  Resident t1
  Where
    type = '$(vType)'
  ;
  
  Store TMP into QVD_$(vType).qvd;
  Drop table TMP;

next vType
Help users find answers! Don't forget to mark a solution that worked for you!