Search found 100 matches

by sujaoschin
Wed Oct 01, 2008 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Main sequencer throwing error when running multiple hash
Replies: 3
Views: 2243

I designed the sequencer in such a way that to run the abbreviations hash first and address hash next ( in series) instead of parallel. Now it is working fine.
by sujaoschin
Mon Sep 29, 2008 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Main sequencer throwing error when running multiple hash
Replies: 3
Views: 2243

Main sequencer throwing error when running multiple hash

I have created 2 hash files for address and abbreviatons separately and created individual sequencer for address and abbreviations . Then I created one main sequencer which call the address and abbreviations to run concurrently and other jobs. When I am running the main sequencer, abbreviations ran ...
by sujaoschin
Sun Sep 28, 2008 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOG149
Replies: 6
Views: 1736

Thanks for your information, Ray.
by sujaoschin
Fri Sep 26, 2008 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOG149
Replies: 6
Views: 1736

May I know the possiblities of this error, please.
by sujaoschin
Thu Sep 25, 2008 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOG149
Replies: 6
Views: 1736

I am getting this message when run the command given by you. 'Datastage/SQL: Table "RT_LOG149" does not exist' Since I got this error, I copied the load job and renamed it. Then I deleted the old load job which thrown error. Again renamed the new copied job to old load job name and ran it....
by sujaoschin
Wed Sep 24, 2008 10:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOG149
Replies: 6
Views: 1736

RT_LOG149

I got a DB2 error of SQLSTATE=57016 when I tried to load the data into the DB2 table and also 'FAILED TO OPEN RT_LOG149 file' error. After fixing this DB2 error also I am unable to compile the ds load job . What is the reason for this?
by sujaoschin
Mon Sep 22, 2008 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

Thanks a lot. I did as you have told in this forum. It worked and this problem is resolved.
by sujaoschin
Tue Sep 16, 2008 6:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing jobs
Replies: 2
Views: 1078

Yes same version of IBM Information server 8- Datastage server edition 8. Earlier I had a temporary environment and now imported all the jobs to the permanent environment.
by sujaoschin
Tue Sep 16, 2008 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing jobs
Replies: 2
Views: 1078

Importing jobs

I exported my job modules( validate,default,lookup, load) into my local drive and did the import all the jobs into the new permanent environment by selecting import->datastage components-->Import selected-->overwrite the query and gave ok. Only validate and load job got copied whereas default & ...
by sujaoschin
Mon Sep 15, 2008 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

Yes. I need your help in stage variable logic. Plz let me know.
by sujaoschin
Mon Sep 15, 2008 2:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

My expression in transformer is

if Input .MT_REPLACEDBYID=lookup.MT_ID then lookup.MT_MODELNUMBER:',':Input.MT_MODELNUMBER else Input.MT_MODELNUMBER

Plz let me know how to enable multiple rows return.
by sujaoschin
Mon Sep 15, 2008 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

No. I am looking up '101' from the input with the 101 inthe lookup. i.e
if input. MT_REPLACEDBYID =lookup.MT_ID then I should get A, 1,2,3.

But I am getting only A,3 as the output.
by sujaoschin
Mon Sep 15, 2008 12:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

Sorry.Mistyped. '1' should not be there. It is like this Lookup -------- MT_MODELNUMBER MT_ID ---------------------- -------- A 101 Input ------ MT_MODELNUMBER MT_REPLACEDBYID ----------------------- ------------------------- 1 101 2 101 3 101 Can you plz advise how to proceed ahead?
by sujaoschin
Sun Sep 14, 2008 11:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

There is only one reference key.
by sujaoschin
Sun Sep 14, 2008 6:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of multiple values
Replies: 12
Views: 4941

Concatenation of multiple values

Input ------- MT_MODELNUMBER MT_REPLACEDBYID 1 101 2 101 3 101 LOOKUP table ---------- MT_MODELNUMBER MT_ID A 1 101 Output field - BISEPS_MODELNUM should have values obeying this condition [ condition for look up is 'if INPUT.MT_REPLACEDBYID=LOOKUP.MT_ID THEN CONCATENATE lookup.MT_MODELNUMBER , inpu...