Page 1 of 1

How to run IA Data Quality rule using external bundles?

Posted: Fri Sep 30, 2016 1:40 pm
by ktrogers
Want to use a third party scheduler, so we have create external bundles for 100+ data quality jobs.

Running on a Linux system and new to scripting for a Linux. Looking for sample script to run the rules in sequence.

Thanks in advanced for any guidance you can offer.

Posted: Fri Sep 30, 2016 4:04 pm
by ray.wurlod
Have you built an istool command to run one bundle? Extending from one to 100 is simply a scripting exercise.

Posted: Wed Oct 12, 2016 6:39 am
by rjdickson
You might want to consider using the command line API (IAadmin) to run the data rules. You would use the -runTasks (see http://www.ibm.com/support/knowledgecen ... mands.html) with an XML input that looks like http://www.ibm.com/support/knowledgecen ... _rule.html

Posted: Mon Oct 24, 2016 2:49 pm
by ktrogers
ray.wurlod wrote:Have you built an istool command to run one bundle? Extending from one to 100 is simply a scripting exercise. ...
I have built the IAJob command line to run the IABundles I created via the IA Client.

I then change to the directory 'cd IBM\InformationServer\ASBNode\bin' on my laptop and I can run my command lines (IAJob -user XXXXXXX -password XXXXXXX -isHost ZLDEVENDWISS01 -port 9445 -runBundle "\\SWPDCENDWODB01\D\DW_Devl\IBM_IARulesBundles\Cactus\BR10000C1001100 Cactus Prov SSN Rule run.xml") and the rules run correctly.

What I am looking for help is how do I now take these command lines and put them into a DOS bat file so I can use adTempus (a scheduler) to run them? Or do I have to use a shell script?

I also need to make sure that they don't all fire off a once when the bat files is ran.

Thanks