Search found 206 matches

by rwierdsm
Tue Jun 13, 2006 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Key Expression
Replies: 5
Views: 1795

Re: Lookup Key Expression

Is the lookup a Database lookup or sequential file lookup?

If it's SQL, you could pass your value in to the lookup, create custom sql that has a between clause, i.e.

Code: Select all

select Sal_level 
  from table 
 where :1 between FromSal and EndSal
Rob W.
by rwierdsm
Tue Jun 13, 2006 5:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate Lookup Values
Replies: 7
Views: 2712

Hi, Actually i mentioned in my post that i want to retain 1st value... In that case, pass the lookup file though a sort and then a tranform. In the transform compare the current row key value to the previous row keyvalue. If the current row key equals the previous row key, don't pass the record on....
by rwierdsm
Mon Jun 12, 2006 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX on Windows XP
Replies: 11
Views: 4718

ray.wurlod wrote:.. it will not even install on XP Home.
Ray et al,

Let me get a clarification here, this statement applies to the server component, not the client...?

Rob W
by rwierdsm
Thu Jun 08, 2006 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Out waiting for mutex
Replies: 26
Views: 14671

chulett wrote:Hope that makes sense...
Perfect sense!

As it turns out, the places where I've done this has pretty low volumes, so it will be OK in the interim.

Thanks, guys (as I mutter something about old dogs learning new tricks...)
by rwierdsm
Thu Jun 08, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Out waiting for mutex
Replies: 26
Views: 14671

Tatiana, No view required, simply add an order by clause, as below Before: Select ColumnA, ColumnB, ColumnC From Table1 After Select ColumnA, ColumnB, ColumnC From Table1 order by ColumnA, ColumnB You can do this by setting the database stage to either 'User Defined SQL', or 'Generated SQL' and spec...
by rwierdsm
Thu Jun 08, 2006 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00942: table or view does not exist
Replies: 12
Views: 4393

It may seem obvious, however, looking through the thread, I don't see you explicitely mention that it is the same user id in TOAD as it is in DataStage. Is your DataStage job using job parameters, is it possible that the user name is set to something else? Sorry if the question seems trivial, but it...
by rwierdsm
Thu Jun 08, 2006 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: waiting for file not working properly
Replies: 8
Views: 2985

Is the file

Code: Select all

'/siebelapp/pfizer/datastage/Ascential/DataStage/Projects/test_team/INPUT/emp.txt'
actually there when you run the job in the regular way, i.e. emp.txt not hard coded?

If you are running the job two different ways as part of your test, maybe something has changed too?!?!
by rwierdsm
Thu Jun 08, 2006 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Out waiting for mutex
Replies: 26
Views: 14671

If you can do the sort as part of your database read, do it there! The database will be much, much faster then DataStage. Then the sort in the aggregator, while it won't hurt, will be incidental, as suggested by Guru (or is that Chuck? :lol: ) Just make sure the order by clause in your SQL is the sa...
by rwierdsm
Wed Jun 07, 2006 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise load error
Replies: 16
Views: 5457

Re: Oracle Enterprise load error

Oracle wants it's date/times to be format CCYY-MM-DD HH:MM:SS. Does the resulting SQL command in the OCI convert the date?

Not sure why Upsert would work but not insert....

Rob
by rwierdsm
Wed Jun 07, 2006 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: initialize a hash file using a parameter
Replies: 13
Views: 3376

If your input file is a dummy file and you only want 1 row to be sent to the hashed file, why would you have 3 records in the input dummy file.

Sorry, but I think we need some more info....

Rob
by rwierdsm
Wed Jun 07, 2006 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File cleanup
Replies: 7
Views: 2148

DSguru2B wrote:Your welcome.
BTW, my name is not Jules Renard and i certainly did not die in 1910 :?
Jules Renard was a french author whos quote i have as a footer.
Regards,
Thanks for the clarification, Chuck.

(sorry, couldn't let that one go :wink: )
by rwierdsm
Wed Jun 07, 2006 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to connect to the server
Replies: 5
Views: 2215

krsriraman wrote:Well... I am not a premium member..?
I realize all the limitations that can prevent your becoming a premium member, however, it is worth it! If 'They' will not pay, you should seriously consider looking to your own resources...

Rob
by rwierdsm
Wed Jun 07, 2006 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase and SQL-Server (not 2005) ISQL command line
Replies: 3
Views: 971

Re: Sybase and SQL-Server ISQL command line

kcbland wrote: Oracle sqlplus does this using &1, &2, &3, etc, but I could't find where you can do this with ISQL.
Shot in the dark, been awhile since I've worked with ISQL, but I seem to recall ?1, ?2 ?3 instead of &1 &2 and &3.

Rob
by rwierdsm
Wed Jun 07, 2006 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: waiting for file not working properly
Replies: 8
Views: 2985

Re: waiting for file not working properly

Is the file (/abc/def/emp.txt ) actually there?

What is the text of the message in Director?

Rob