Handling partial reload in the script

Partial reload in QlikView allows us to add additional data into some tables while leaving other tables alone. This can be great if you have transactional information that you reload quite frequently and you want to minimize the load time. We can add the additional data without having to reload everything else.

In this recipe, we will see how to use the IsPartialReload function to handle partial reloads.

Getting ready

Load the following script:

Static:
Load
  RowNo() As ID1,
  'Static' As DataType1,
  Timestamp(Now()) As TimeStamp1
AutoGenerate(1);

Dynamic:
Load
  RowNo() As ID2,
  'Dynamic1' As DataType2,
  Timestamp(Now()) As TimeStamp2
AutoGenerate(1);

How to do it...

These steps show you how to handle partial reload in ...

Get QlikView for Developers Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.