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: 
tevkar1
Contributor III
Contributor III

How can I trigger a 'first reload' for an app

Hi,

Trying to update/upgrade Sessions monitor ....

When I click Load Data from Data Load Editor, it tells me that the load happens incrementally.

Incremental reload (not first reload)

Any chance to trigger for a first/initial realod ?

Kind regards

 

Labels (1)
1 Solution

Accepted Solutions
tevkar1
Contributor III
Contributor III
Author

Following has worked for me:

  • Update Sessions Manager -> load_base_table

 

// Check to see if governanceLogContent qvd exists
// Let baseFileSize = FileSize('$(archivo).qvd');
Let baseFileSize = 0;

 

  • Run Load Data
  • Roll back to the original code

 

// Check to see if governanceLogContent qvd exists
Let baseFileSize = FileSize('$(archivo).qvd');

 

 

 

View solution in original post

2 Replies
PhanThanhSon
Creator II
Creator II

Hi,

i would do it like this way:

Set vLoad = 0;

IF $(vLoad) = 1 then
InitialReload:
LOad * Inline [
A, B,C
1,2,3
];

ELSEIF $(vLoad) = 0 then

IncrementalLoad:
LOad * Inline [
A, B,C
3, 4, 5
];

END IF

Or try a partial reload:

https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPref...

https://www.youtube.com/watch?v=QuQdWOCUwjo

Best regards Son

tevkar1
Contributor III
Contributor III
Author

Following has worked for me:

  • Update Sessions Manager -> load_base_table

 

// Check to see if governanceLogContent qvd exists
// Let baseFileSize = FileSize('$(archivo).qvd');
Let baseFileSize = 0;

 

  • Run Load Data
  • Roll back to the original code

 

// Check to see if governanceLogContent qvd exists
Let baseFileSize = FileSize('$(archivo).qvd');