Search found 102 matches

by satya99
Tue Jun 02, 2009 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job optimization
Replies: 8
Views: 4017

yes,


Step 1:

source -->Link_Partitioner-->source1,source 2...

Step 2:

Source1 -->Transformer(your logic) ---> Target table ( Allow Multiple Instance)


Source2 -->Transformer(your logic) ---> Target table
...
by satya99
Mon Jun 01, 2009 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job optimization
Replies: 8
Views: 4017

Split the source file--> Allow Multiple instance
by satya99
Thu Jan 29, 2009 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

yes,
by satya99
Thu Jan 29, 2009 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

Source is hashed file.

ex:

No1(key) No2 no3

combination 1

100~8~T 205
100~9~T 305 405

combination 2

200~7~T 101
200~9~T 201 202

This is how the output should loook like:

combination 1

100~8~T 205
100~9~T 305 205 (cross ref)


combination 2

200~7~T 101
200~9~T 201 101 (cross ref)
by satya99
Thu Jan 29, 2009 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

Well i created hashed file from source and doing a look up, but i am not getting the expected result.
by satya99
Wed Jan 28, 2009 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

IF lkp.NOTFOUND THEN scr.no ELSE lkp.no

I created the look up from the source, am i supposed to do that?
by satya99
Tue Jan 27, 2009 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

Here is the output

No1(key) No2 no3

100~8~T 205 205(changed from '' to 205 aswell) this should not happen
100~9~T 305 205(Changed from 405 to 205)
by satya99
Mon Jan 26, 2009 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

When i find a match on 100~8~T then i need to use value in no2 column i.e 205 and drop it in no3 column of 100~9~t(cross reference) No1(key) No2 no3 100~8~T 205 100~9~T 305 405 Noa(Key) Nob(Key) Noc(Key) No2 no3 100 8 T 205 100 9 T 305 405 o/p No1(key) No2 no3 100~8~T 205 100~9~T 305 205(Changed fro...
by satya99
Mon Jan 26, 2009 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not matching
Replies: 15
Views: 7000

Lookup not matching

I have a source Hashed file ex: No1(key) No2 no3 100~8~T 205 100~9~T 305 405 I need to perform a look up against the same hashed file. So i created a new hashed file from the source and split the key into Noa(Key) Nob(Key) Noc(Key) No2 no3 100 8 T 205 100 9 T 305 405 Now i am performing a lookup. wh...
by satya99
Fri Nov 14, 2008 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

Table1.id in ( select id from Table2 where Table2.no =:1) step1: I have changed the design to implement subquery in a separate job step2: I am able to get the id for Table2 step3: Now from the lookup i draged and droped on the key column of the Table1 step4:(modified) UPDATE TABLE1 SET DT=TO_DATE(:2...
by satya99
Fri Nov 14, 2008 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

COLUMN NAME COLUMN1 KEY DT ID1 ID2 ID3 ID4 NAME1 NAME2 NAME3 NAME4 NAME5 NAME6 UPDATE TABLE1 SET DT=TO_DATE(:2, 'YYYY-MM-DD H24:MI:SS'), ID1=:3, ID2=:4, ID3=:5, ID4=:6, NAME1=:7, NAME2=:8, NAME3=:9, NAME4=:10, NAME5=:11, NAME6=:12, WHERE ID4 = 'XYZ'AND NAME1 IS NULL AND Table1.id in ( select id from...
by satya99
Fri Nov 14, 2008 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

If i proceed that way i am getting error

job..Oracle_OCI: ORA-00904: "x": invalid identifier

job..Oracle_OCI.DSLink1: DSP.Open GCI $DSP.Open error -100
by satya99
Fri Nov 14, 2008 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

job design txtfile--->trm-->oracle(i have to update this table) User defined sql: UPDATE Table_name SET column3=:1, column4=:2, column5=:3, column6=:4, column7='abc' WHERE column7 !='xyz' and column3 is NULL Table_name.id in ( select id from Table_name2 where Table_name2.no =:additional column from ...
by satya99
Thu Nov 13, 2008 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

I am working on it will let you know I did that, but the problem is it does not belong to this table( i guess that's the problem, How should i handle it) UPDATE Table_name SET column3=:1, column4=:2, column5=:3, column6=:4, column7='abc' column8=:8 WHERE column7 !='xyz' and column3 is NULL and Table...
by satya99
Thu Nov 13, 2008 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 11314

Let me back up The problem is arising just because of Table_name.id in ( select id from Table_name2 where Table_name2.no =:8) 1. column 8 is coming from a txt file, from which i need to to find a match against a database table. What? That's an important piece of information you left out. Which "...