Search found 100 matches

by sujaoschin
Thu Sep 11, 2008 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming the field
Replies: 9
Views: 3059

Thank you and I used the Downcase () and Upcase () and resolved this problem.
by sujaoschin
Thu Sep 11, 2008 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenation of values with null
Replies: 3
Views: 2647

Thank you. I have used the below expression and the problem is resolved. if Biseps_Genericcode.BISEPS_GENERICCODE = hash_Biseps_Genericcode.AB_CODE AND not(isnull(hash_Biseps_Genericcode.AB_SUBGROUP)) then hash_Biseps_Genericcode.AB_GROUP:" ": hash_Biseps_Genericcode.AB_SUBGROUP else if Bi...
by sujaoschin
Wed Sep 10, 2008 10:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenation of values with null
Replies: 3
Views: 2647

concatenation of values with null

I am doing concatenation of two column values if below condition is true AB_GROUP has the value - 'switch' AB_SUBGROUP has the value - NULL or empty Condition if Biseps_Genericcode.BISEPS_GENERICCODE = hash_Biseps_Genericcode.AB_CODE then hash_Biseps_Genericcode.AB_GROUP:" ":hash_Biseps_Ge...
by sujaoschin
Tue Sep 09, 2008 10:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming the field
Replies: 9
Views: 3059

What I did now is before concatenation with SMD , I checked for the field B is having 'SMD' or 'smd' using the expression below like if column B = 1 AND LEFT(column A value,1,3) <>'smd' then "SMD ":Column A value else Column A value The above command is checking for 'smd' alone. Is there a...
by sujaoschin
Tue Sep 09, 2008 9:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming the field
Replies: 9
Views: 3059

I did the concatenation and got the result as

'SMD smd 14 pin'

From this above result, I need to remove the 2nd 'smd' as it is repeating twice and final output should be 'SMD 14 pin'.
by sujaoschin
Tue Sep 09, 2008 7:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming the field
Replies: 9
Views: 3059

Trimming the field

There are 2 input columns A & B where the values will be like below Column A has values like smd 14 pin SMD 16 PIN SMD SOT-23 Column B has values like 1 1 1 1 Output column C =Populate the values 'if the column B =1, then concatenate"SMD": column A values' The result is SMD smd 14 pin ...
by sujaoschin
Wed Sep 03, 2008 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: warning while creating a hash file
Replies: 2
Views: 1484

Thanks, Ray. This problem is resolved and I used the below in transformer stage to avoid the warnings and filter out null records.

Not(IsNull(lookup_BISEPS_MODELNUM.BISEPS_MODELNUM))
by sujaoschin
Tue Sep 02, 2008 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: warning while creating a hash file
Replies: 2
Views: 1484

warning while creating a hash file

I am creating a hash file from db2 table for the purpose of lookup. In db2 the column 'biseps_modelnum' has both null values and values. This biseps_model num is the key for the lookup. When I am running the job, I am getting this below warning as null records are there. How to avoid this warning? S...
by sujaoschin
Thu Aug 28, 2008 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating an Error table
Replies: 4
Views: 1927

The purpose is for the business wants to see the rejected records and to know the reason why it got rejected and for the reconcilation purpose.
by sujaoschin
Wed Aug 27, 2008 7:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating an Error table
Replies: 4
Views: 1927

Creating an Error table

I have 3 different lookups and these 3 lookups have rejections and exceptions. Which is the best method to design the error table? Either to have separate error table for each lookup with the key field, error no,error code, and error description or to have a common error table so that it can be refe...
by sujaoschin
Mon Aug 25, 2008 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning while running Validate and Load job
Replies: 2
Views: 999

Warning while running Validate and Load job

I am getting the below warning when running my validate and load job. How to avoid this below warning?

BISEPS_MODULEITEMS_ASSET_LOAD..od_ASSET: This update action 'insert or update' is not compatible with parameter array binding. Array Size property will be set to 1.
by sujaoschin
Mon Aug 25, 2008 12:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove duplicates in Datastage server edition 8
Replies: 5
Views: 10238

I have used the Hash file and removed the duplicates.
Thank you very much
by sujaoschin
Mon Aug 25, 2008 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to filter the records
Replies: 2
Views: 1146

This issue is resolved by writing the if command
by sujaoschin
Mon Aug 25, 2008 12:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to reject the records
Replies: 3
Views: 1240

Thanks , Ray. The problem is resolved.

As mentioned by you, I used the constraint expressions like below

Constraint expressions.
InLink.AS_LOCATION <> "D" (regular output)
InLink.AS_LOCATION = "D" (reject link)
by sujaoschin
Mon Aug 25, 2008 12:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: If command
Replies: 8
Views: 1985

Thanks, Chulett. Like you told,I used one 'IF' and 'AND' like below and it is working fine. if Mark_D.AS_LOCATION <> "111" AND Mark_D.AS_LOCATION <> "112" AND Mark_D.AS_LOCATION <> "105" AND Mark_D.AS_LOCATION <> "104" AND Mark_D.AS_LOCATION <> "108"...