Search found 87 matches

by Das
Tue Apr 24, 2007 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look up based on two conditions
Replies: 9
Views: 2958

kcbland wrote:Shouldn't

Code: Select all

If not(IsNull(DSLink86.Col1)) 
then 
Unit_Out.Col1 
Else 
if not(IsNull(DSLink89.Col1)) then DSLink89.Col1 
else @NULL 

be

[code ...
I am not geeting you exatly..Please expalin
by Das
Mon Apr 23, 2007 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look up based on two conditions
Replies: 9
Views: 2958

Two lookups, use the results of one else if none then use the other. ... Thanks, I have used two hashed file lookups,And use the following logic in output column of transformer : If not(IsNull(DSLink86.Col1)) then Unit_Out.Col1 Else if not(IsNull(DSLink89.Col1)) then DSLink89.Col1 else @NULL DSLink...
by Das
Mon Apr 23, 2007 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look up based on two conditions
Replies: 9
Views: 2958

Look up based on two conditions

Hi, I have an issue as follows. I have 2 source[1 flat file, 1 table].I need to look up the for data coming from the flat file to the table based on the following conditions: If the field1 in the flat file is equal to Col2 or Col3 of the table .i need to pass the curresponding Col1 [the key column o...
by Das
Mon Apr 23, 2007 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To improve job performance.
Replies: 5
Views: 1066

chulett wrote:Not much you can do there, it's a full table scan regardless of the indexes, which would not be used. You sure you don't mean 'Group by A' ? :? ...

insted of doing group by in query If i use aggregator stage ,Will it give any performane improvement..
Suggest.....
by Das
Mon Apr 23, 2007 1:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open hash file
Replies: 13
Views: 7482

please post the exact and complete error from the log. Please. Also, what DSGuru posted goes without saying - the names must be the same, not should be. And on ... Hi, Thanks. I am getting the following error in director WDF..Staff_hash.Hash_staff: DSD.UVOpen Unable to open file '/ABC/Dasl/Hash_sta...
by Das
Fri Apr 20, 2007 11:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open hash file
Replies: 13
Views: 7482

:? You are unable to create the hashed file, or to read it once you've created it? In any case, please post the exact and complete error from the log. ... Actaully i am not able to read hash file. From input stage to hash file the data got transfered.from threre i can not read,or view data.The link...
by Das
Fri Apr 20, 2007 11:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To improve job performance.
Replies: 5
Views: 1066

To improve job performance.

Hi, Have an issue as follows. I having a query from an input informix stage. select A ,Max( B ) from tab Where A not null and B not null Group by B Here both columns A,B are indexed. As the source table contains 5crores of records,the performance is very slow.[22row/Sec]. Please suggest a way to imp...
by Das
Fri Apr 20, 2007 10:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open hash file
Replies: 13
Views: 7482

Unable to open hash file

hi,

I getting the error while running the job with hash file lookup"unable to open hash file"I have used directory path option while creating the hash file.and i the input tab file name as input link name and in output tab output ink name.
Please help me out.
by Das
Wed Apr 04, 2007 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while passing parameter from one job to another
Replies: 5
Views: 2117

ray.wurlod wrote:Use instead of DSJ.PARAMTYPE.STRING ...
I have used DSJ.PARAMVALUE but still giving the same error.
Please suggest any alternative
by Das
Tue Apr 03, 2007 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while passing parameter from one job to another
Replies: 5
Views: 2117

Problem while passing parameter from one job to another

Hi, I am have some proble while passing parameter from one job to another using the following manner UtilityRunJob('testJob', 'Par1=' : DSLink4.o_p_uid :'|' : 'DataSource=' : DSGetParamInfo(DSJ.ME,DataSource,DSJ.PARAMTYPE.STRING)) I am calling testJob from job ABCD par1 is taking from a file and the...
by Das
Fri Mar 30, 2007 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: updating data from flat file rdbload plug in stage
Replies: 1
Views: 842

updating data from flat file rdbload plug in stage

Hi, I am facing some problem while updating data from flat file to rdbload [Red bric data load plug in]. I want to update some columes based on the key values in the redbick ware house . In the plug in inputs->Properties tab i mention TMU Mode as update But it is not updating the fields. Please help...
by Das
Tue Mar 27, 2007 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting -11103 while running DS job
Replies: 4
Views: 1148

Getting -11103 while running DS job

Hi , I am geeting the following error while running the DS job.And got aborted Please help me out. Stlkp..Transformer_1: [Informix][Informix ODBC Driver]Unspecified System Error = -11103. SQLBindCol: Failed to bind result set column 'o_st_uid' for SQL statement: SELECT o_st_eid from o_st where o_st_...
by Das
Mon Mar 26, 2007 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look Up failure due to duplicates
Replies: 4
Views: 1010

DSguru2B wrote:Are you using ODBC stage for lookup. Because only that stage supports multiple row returns. Search on keywords "Reference lookup generated %d rows. Only the last row was used" to get more posts relating to your error.
Thanks,I am using INformixCLI stage
by Das
Mon Mar 26, 2007 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look Up failure due to duplicates
Replies: 4
Views: 1010

Look Up failure due to duplicates

Hi, Please Suggest me a solution for the below issue. I want to perform a look up operation ,for that i have one column TAB1.A of [Non Key] from the source and i wanated to look up to TAB2.A [key column in that table] and populate some values from TAB1 and TAB2 to Target. When i was running the job ...
by Das
Wed Mar 14, 2007 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading parameter from a file or Table
Replies: 7
Views: 4051

You can pass the parameters delimited by | characters. Row limit is the number after which the job need to be stopped. And the Warning is the limit is the number of warning after which thejob will abort. You can use the input values read from file as argument. Thanks. I have two columns Col1 and Co...