Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have several reload tasks as follows:
Extraction task
Transformation Task 11
Transformation Task 12
Transformation Task 13
Transformation Task 2
I would like to achieve the following:
1. Run "Extraction Task".
2. Run "Transformation Task 11", "Transformation Task 12", "Transformation Task 13" in paralel after "Extraction Task" is completed.
3. Run "Transformation Task 2" after all "Transformation Task 11", "Transformation Task 12", "Transformation Task 13" are completed.
Is it possible to do with QMC? If not what flow package would you suggest?
Thanks
Darius
You need QV Publisher license for this.
Hi
yes,you must have publisher License to do the same.
Regards
ASHFAQ
I think you may do it from external script using commands.
15-05-2014 08:07 użytkownik "Ashfaq Mohammed" <qcwebmaster@qlik.com>
napisał:
Qlik Community <http://community.qlik.com/> Run reload tasks in
paralel
reply from Ashfaq Mohammed<http://community.qlik.com/people/ashfaq_haseeb?et=watches.email.thread>in *Deployment
- View the full discussion<http://community.qlik.com/message/528771?et=watches.email.thread#528771>
Hi Darius,
As Ashfaq mentions, you need a Publisher license to do this. Contact your Account Manager to arrange a solution.
Regards,
Erik
Hello,
i understand, that it is always better to have publisher. Personally i like it
But if Darius at this time doesn't have it, i think, that before he buy, he may try to prepare external script to manage this complex reload.
"c:\Program Files\QlikView\QV.exe" /r c:\reports\Inventory.qvw
should start reload and wait until it is finished.
/rp will do something similar except it runs the partial reload function.
/l switch (that's a lower case ell) will open the report, run the reload function and leave the report open.
/p switch will open the report, run a partial reload and then leave the report open.
/v switch can be used to pass a document variable value into the report.
this should work from VB script
Set objShell = CreateObject("WScript.Shell")
objShell.Run """c:\Program Files\QlikView\QV.exe"" /r /vbatch_flag=1 c:\reports\Inventory.qvw"
The only thing is to write simple application, which will be able to fire commands sequentially and in parallel and check status to know, that reload steps finished correct.
regards
Darek