How do I submit Informatica workflows to run at the same time..?
We developed a file having all the PMCMD commands for every workflow. We intend to call this file in the script that will eventually hit Workflow manager for the execution of Infa Workflows. The problem we are facing is, the workflows are running sequentially. There is no dependency between any of the workflows and can be run in parallel.
Im already using as below:
./pmcmd startworkflow -sv intg_ser -d Domain_name -u user -p welcome123 -usd Native -f SDE_ORAR1213_Adaptor -rin intg_ser SDE_ORA_InventoryLotDimension &
(followed by next pmcmd command)
'&' used to run the workflows in background.
Is there any way to do apart from using '&' , since i do not want to run the w/f in background. Any info of how Scheduling tools like DAC achieved this parallelism, we wanted to implement the same functionality without using any scheduling tool.
If not, can I achieve this through unix scripting itself? If so please provide me the steps.
Any Java related suggestions also accepted.
Thanks in Advance!