Search found 160 matches

by dsusersaj
Thu Mar 05, 2015 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetLinkInfo
Replies: 3
Views: 2953

Yes that makes sense. Thanks.
by dsusersaj
Thu Mar 05, 2015 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetLinkInfo
Replies: 3
Views: 2953

DSGetLinkInfo

Why am I not able to use DSGetLinkInfo function in the transformer in my parallel job?.

It shows as red and upon validation it says

"Variable 'DSGetLinkInfo' not defined'

Thanks
by dsusersaj
Wed Jul 09, 2014 2:56 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Business rules
Replies: 15
Views: 18511

ok. I understand . I tried doing a basic report for "color" and simultaneously ran a query in the database to count the distinct values and their counts. The table I am analysing is huge. It has 18 million records and 1 million distinct values for color. But when I do "Frequency by Fr...
by dsusersaj
Mon Jun 23, 2014 5:19 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Business rules
Replies: 15
Views: 18511

Business rules

I am a newbie in using IA. I set up a project and analyzed a particular column I am interested in. I was hoping that the tool would categorize the similar spelled values for me. But I don't see an option to get that info. What I am looking for is, I have a column named "color" which has va...
by dsusersaj
Wed Mar 05, 2014 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

Thank you!. I will try this .
by dsusersaj
Tue Mar 04, 2014 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

package HttpURLConnectionExample; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import javax.net.ssl.HttpsURLConnection; public class HttpURLConnectionExample { private final String USER_AGEN...
by dsusersaj
Tue Mar 04, 2014 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

@eostic ... Hmm. No I haven't used the java stage's javapack API. What I did is , I wrote a java code in eclipse and then tried to run the executable through java client stage in datastage. Coming to your last suggestion: "If all you want to do is run a java class that already works at the comm...
by dsusersaj
Tue Mar 04, 2014 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

lstsaur wrote:Yes, JavaSE-1.7 is the same as Java SE 7. However, try to use either 1.5 or 1.6 to compile.
I did try by compiling my class using JavaSe-1.6 and still I get the same error.
by dsusersaj
Tue Mar 04, 2014 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

The highest version I have available to compile is 1.7. does JavaSE-1.7 correspond to Java SE 7?
by dsusersaj
Tue Mar 04, 2014 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

The .class file I am using is compiled under 'JavaSE-1.4'
by dsusersaj
Mon Mar 03, 2014 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

OK looks like the problem was that I have to give packagename.classname so now I gave path as /workarea/DSJobs/Development/xx and classname as HttpURLConnectionExample.HttpURLConnectionExample I got rid of the previous error. The error I am getting now is Fatal: java.lang.ClassCastException: HttpURL...
by dsusersaj
Mon Mar 03, 2014 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

I feel that it is looking for class under the package as my package name is also same??..
Even after extracting just the class file and putting it under the unix directory it is looking for package/class.class .I guess...
by dsusersaj
Mon Mar 03, 2014 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

In the java client stage I have ,

Transformer class Name :HttpURLConnectionExample
Path:/workarea/DSJobs/xx
by dsusersaj
Mon Mar 03, 2014 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

You should see the HttpURLConnectionExample.class is already in the /workarea/DSJobs/xx directory. Hi I extracted just the class from my jar file to a directory and then copied the class file to the unix directory.Now I am getting the following error. APT_CombinedOperatorController,0: Fatal Error: ...
by dsusersaj
Mon Mar 03, 2014 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java client issue..Java experts please help!
Replies: 23
Views: 13375

In the property of your Java client stage, put HttpURLConnectionExample in the Transformer Classs Name box, and put /workarea/DSJobs/xx directory in the User's Classpath. Put compiled class HttpURLConnectionExample in that directory instead of .jar file. Then you should be able to run the program u...