Search found 42189 matches

by chulett
Mon Oct 22, 2007 7:33 am
Forum: General
Topic: The Information on Demand conference thread
Replies: 6
Views: 1782

Sadly, no - no pictures, the camera stayed at home. Besides, this wasn't exactly a seedy bunch so probably not all that many opportunities for embarrassment would have been to be had. The conference was decent and as Vincent noted, quite large. Much walking was had by all and sometimes the next sess...
by chulett
Mon Oct 22, 2007 12:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add_to_heap() - Unable to allocate memory hashfile error
Replies: 2
Views: 1218

Did you try searching for that message in the forums? Been discussed here a time or three...
by chulett
Sun Oct 21, 2007 10:16 pm
Forum: General
Topic: The Information on Demand conference thread
Replies: 6
Views: 1782

Only 608 unread messages when I got home. Probably half of them from Ray, I'd wager. :wink:
by chulett
Sun Oct 14, 2007 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 stage used for lookup in Server
Replies: 5
Views: 1398

Re: One more doubt ...

But I am not clear about, why the last row or the first row was passed when bind variable is not used. That's just The Way It Works. A lookup can only return a single row unless you are using ODBC or a UV stage for the lookup, so you only get the first or the last. Oracle gives you the last row as ...
by chulett
Sat Oct 13, 2007 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 stage used for lookup in Server
Replies: 5
Views: 1398

Welcome! :D Some general rules for lookup queries: * You always need to select as many column as defined in the stage, in the same order * Key fields are used in the where clause and require values from the input link * Better to use a hashed file rather than a database stage for lookups * Best to l...
by chulett
Sat Oct 13, 2007 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Control and Non-ASCII characters
Replies: 9
Views: 12412

Said pretty much the same Arnd did. Investigate the Convert function, use multiple Char() functions cat'd together to build the list of characters to change.
by chulett
Sat Oct 13, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DRS Stage- Environmenta Variable
Replies: 10
Views: 4877

Here's a "trick" so that you can use the "Insert Job Parameter" helper. Right-click on the DRS stage and select Grid Style which is the old way you worked with the stages. Switch to the Properties tab and then use the Insert Job Parameter tool to populate your connection information. See if that he...
by chulett
Sat Oct 13, 2007 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading SQL from file to extract data from Oracle Tables
Replies: 19
Views: 4627

If just the length is the problem then you are probably out of luck, having passed some internal size limit such that the sql ends up getting truncated.

Have you opened a case with your support provider?
by chulett
Fri Oct 12, 2007 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating dynamic table.
Replies: 5
Views: 1501

You can't. It must be a Job Parameter passed in from another source, like another job or routine. A Sequence job could easily do the trick, read the file to get the parameter value and then pass it to your processing job.
by chulett
Fri Oct 12, 2007 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dele from SQL Server table using DRS stage
Replies: 6
Views: 1613

But it also would not have generated the SQL with a parameter marker in the where clause. :?
by chulett
Fri Oct 12, 2007 10:23 am
Forum: General
Topic: unable to run The datastage job in UNIX
Replies: 2
Views: 1170

Please remove your duplicate post - edit it, check off the Delete option and then Submit.
by chulett
Fri Oct 12, 2007 10:22 am
Forum: General
Topic: unable to run The datastage job in UNIX
Replies: 2
Views: 1170

You need to 'source' your dsenv file first, then run the job:

Code: Select all

cd `cat /.dshome`
. ./dsenv
by chulett
Fri Oct 12, 2007 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dele from SQL Server table using DRS stage
Replies: 6
Views: 1613

That makes no sense. The log always just shows the sql statement once with the bind variables in place, not repeated over and over with each row's values subsituted in.

That statement looks equivalent to saying 'where 1=1' and would delete the entire contents of your table. :?
by chulett
Fri Oct 12, 2007 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read the last line of a file
Replies: 5
Views: 2087

SEEK with the correct argument will get you to the end of the file in a BASIC routine. Then you could back up from there. Or "tail -1" in UNIX or MKS Toolkit.
by chulett
Fri Oct 12, 2007 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Web Service in command line from DataStage EE 7.5.1
Replies: 7
Views: 2721

Yes, with the exact same answer as previously given.