Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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!

Labels (3)
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!