Search found 3 matches

by aviroops
Wed Jan 19, 2011 7:17 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: How to call a Java Program from DSTx map
Replies: 1
Views: 15352

Got the Solution

I finally found out the solution for my own problem. I did modify the java program a bit. import java.lang.*; import java.util.*; public class bmid { public static final void main(String args[]) { bmid ob = new bmid(); ob.randomStr(); } public static String randomStr () { char AB[] = {'0','1','2','3...
by aviroops
Wed Jan 19, 2011 5:29 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: How to call Shell script from a dstx map?
Replies: 5
Views: 20200

Hi jgibby,

I have implemented your code but it doesn't seem to work.

There is a bit of modification

Code: Select all

=GET( "SHL" , "-cli -cmd" +" test.sh" )
This works fine when you have to execute a script named as "test.sh"
by aviroops
Wed Jan 19, 2011 3:50 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: How to call a Java Program from DSTx map
Replies: 1
Views: 15352

How to call a Java Program from DSTx map

Hi, I have a java program that generates random alphanumeric character. import java.lang.*; import java.util.*; public class bmid { public static final void main(String args[]) { char AB[] ={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','...