Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mvitalyte
Partner - Contributor II
Partner - Contributor II

Partial reload on QlikView Server

Hello,

I am using qmsedx.exe to trigger the reload task on QlikView Server. This trigger is innitiated by pressing the button (in Ajax client interface) and running the macro (qmsedx command). The reload works perfectly.

However, I would like to run not full, but partial reload. Is it possible to run a partial reload on QV Server using qmsedx.exe? I could not find any parameters in qmsedx.exe and no such option and setting in QlikView Management Console.

P.S.: I have a simple QlikView Server, without Publisher license.

Thank you,

Milda

1 Reply
Miguel_Angel_Baeyens

Hi Milda,

The task must be configured to be partial reload. I know where the setting is in Publisher but I'm not sure about it without Publisher. In any case, it does not depend on the trigger.

You can work that around and warp several pieces of script using IF and variables you can pass using this tool instead of QMSEDX.exe, so you only load what you want:

Script:

IF '$(vReloadMaster)' = 'YES' THEN

MasterData:

LOAD *;

SQL SELECT * FROM Master;

END IF

qv-edx-trigger.exe command

QvEDXTrigger.exe --task="PartialReload" --variable=vReloadMaster --values='YES'

Hope that helps.

Miguel