Search found 47 matches

by ddevdutt
Wed Jun 02, 2010 11:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set WSDL url as a parameter
Replies: 6
Views: 3571

Thanks Ernie!!

I was able to parametrize the complete string in the Port Address. I was missing the # while setting the parameter.

Thanks for all the help.
by ddevdutt
Wed Jun 02, 2010 11:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set WSDL url as a parameter
Replies: 6
Views: 3571

Thanks Ernie!! I was able to use the parameter for the Port Address as suggested in your example .

For some reason I get an error when I try making the whole string as a parameter.
by ddevdutt
Tue Jun 01, 2010 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set WSDL url as a parameter
Replies: 6
Views: 3571

Thanks Ernie!

I was able to parametrize the WSDL.

But I was unable to parametrize the Port Address (on the Advanced Tab).
eostic wrote:...it's been awhile, but I recall in testing that I was not able to parameterize anything else on the advanced tab...
by ddevdutt
Tue Jun 01, 2010 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set WSDL url as a parameter
Replies: 6
Views: 3571

Set WSDL url as a parameter

Is there a way to parametrize WSDL url when we use the web service transformer stage in DataStage?
by ddevdutt
Tue Jun 01, 2010 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Multiple Arrays
Replies: 5
Views: 2846

Thanks Craig! Every record is in the following format: Address1 Address3 Customer1 ---> ---> Customer2 ---> Address2 Address4 Customer2 is a duplicate customer of Customer1. Customer1 has an array of addresses (Address1 and Address2). Customer2 also has an array of addresses (Address3 and Address4)....
by ddevdutt
Sun May 23, 2010 11:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Multiple Arrays
Replies: 5
Views: 2846

XML Multiple Arrays

I have a requirement that needs me to handle arrays in DataStage before calling a web service. Every record is in the following format: Address1 Address3 Customer1 ---> ---> Customer2 ---> Address2 Address4 (Not sure if the illustration above will be of any help, I have a Customer1 who has an array ...
by ddevdutt
Fri Aug 07, 2009 1:09 pm
Forum: General
Topic: Kill Job If Lookup Finds Contraints
Replies: 5
Views: 2548

Re: Kill Job If Lookup Finds Contraints

You can create two separate jobs. The first job splits your data into two files/datasets (One file contains your errors and the second one is your valid records). The second job can be used to load the data into the target. Between the first and the second job you can check to see if the error file ...
by ddevdutt
Fri Aug 07, 2009 12:24 pm
Forum: General
Topic: Kill Job If Lookup Finds Contraints
Replies: 5
Views: 2548

Re: Kill Job If Lookup Finds Contraints

In the transformer put in a constraint to check for your error code and set a value for "Abort After Rows"
by ddevdutt
Thu Aug 06, 2009 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to parameterize records in a File
Replies: 4
Views: 2321

Re: How to prametartise records in a File

In the Sequential file stage, you have a property under Options "Read First Rows".

Set the value of this property to a job parameter and you should be good to go.
by ddevdutt
Wed Jul 29, 2009 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join stage issue
Replies: 8
Views: 3256

The keys you partition on in the first join will be different from the keys you partition on in the second join.

What are the various stages in your job?
by ddevdutt
Wed Jul 29, 2009 2:59 pm
Forum: General
Topic: Null Handling
Replies: 15
Views: 6082

Like Craig mentioned, you probably have values that are not null in the Salary field. Hence apart from checking for nulls, also check to see if those fields are empty.
by ddevdutt
Tue Jul 28, 2009 1:37 pm
Forum: General
Topic: "OR" in a join
Replies: 7
Views: 3859

Glad to be of help :D
by ddevdutt
Tue Jul 28, 2009 10:28 am
Forum: General
Topic: "OR" in a join
Replies: 7
Views: 3859

Okay. One of the ways you can achieve this is to do a lookup first (this will depend on your data volumes) Then send the rejects from the first lookup to a second lookup stage where you use the same reference dataset. You can then Funnel the outputs from both the lookup and proceed with any other tr...
by ddevdutt
Mon Jul 27, 2009 3:42 pm
Forum: General
Topic: "OR" in a join
Replies: 7
Views: 3859

Re: "OR" in a join

Can you please explain a bit more elaborately as to what your requirement is?