Search found 53125 matches

by ray.wurlod
Wed Jan 04, 2006 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any function to remove the leading zeros
Replies: 17
Views: 6786

I will limit my explanation of that expression to two simple points; it's woefully cumbersome (compare the other suggestions) and it's wrong (which was also already pointed out - it removes all zeroes, including any within the number).
by ray.wurlod
Wed Jan 04, 2006 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Datastage XE
Replies: 3
Views: 1656

DataStage 390 was renamed DataStage EE MVS and was then renamed IBM Websphere DataStage EE MVS Edition
by ray.wurlod
Wed Jan 04, 2006 7:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to have two Instances of 7.5.1 on one box
Replies: 17
Views: 3955

One physical machine but two separate machines as far as the rest of the world is concerned. Don't really understand the need for two copies of the same version either - using multiple projects would seem to do it for me. Maybe they want one with NLS and one without?
by ray.wurlod
Wed Jan 04, 2006 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write a constraint to Load rows based on last row #
Replies: 13
Views: 4185

:idea: If you initialize a stage variable it doesn't actually need a derivation. If there is no derivation, the initial value remains accessible.
by ray.wurlod
Wed Jan 04, 2006 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handle Null in Conversion of String to Date
Replies: 4
Views: 1240

Then you need and If..Then..Else, with one branch handling IsNull(column)
by ray.wurlod
Wed Jan 04, 2006 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SearchableN
Replies: 6
Views: 1645

They're not "trash" - they're messages (metadata) indicating that the column is not indexed.
And it's probably that you have not created all the hashed files you need in the new environment.
Back to you.
by ray.wurlod
Wed Jan 04, 2006 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: could not start Datastage telnet service on local computer
Replies: 19
Views: 5475

It's probably the MKS Toolkit telnet that's occupying port number 23. This starts before the DataStage Telnet Service. Change the DataStage Telnet Service to Manual, and just don't start it. You can get there via the MKS Toolkit telnet if you need to. Alternately, cripple the MKS Toolkit telnet, the...
by ray.wurlod
Wed Jan 04, 2006 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLFetch failed
Replies: 6
Views: 3283

The default maximum column retrievable by the ODBC stage is 400, so that's not the problem. This can be increased by MAXFETCHCOLS in the uvodbc.config file. Are you using generated SQL or user-defined SQL in the ODBC stage? Are there 58 columns defined on the Columns grid? Do all the data types matc...
by ray.wurlod
Wed Jan 04, 2006 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

Please be more specific about what you mean by "performance". Hashed files (note, not "hash" files) are the fastest possible mechanism for performing a key-based lookup, particularly if cached in memory.
by ray.wurlod
Wed Jan 04, 2006 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split file based on condition
Replies: 5
Views: 1376

If the condition is a value, use a Switch stage. If the condition must be an expression (akin to a WHERE clause in SQL) use a Filter stage.
by ray.wurlod
Wed Jan 04, 2006 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handle Null in Conversion of String to Date
Replies: 4
Views: 1240

If you have days and months with arbitrarily one or two digits, then Left(x,10) may not be a reliable function to use. Get that piece right (or just lose it is probably OK) then try again with the remainder.
by ray.wurlod
Wed Jan 04, 2006 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transpose a row Question in Parallel jobs
Replies: 18
Views: 7576

I believe Pavan originally stated that an awk script he wrote was slow and that awk was too slow and that he wanted to code this in Datastage because it is faster? No, I've re-read the original post. He only asked whether it is possible in DataStage. He did claim that awk was too slow, but made no ...
by ray.wurlod
Wed Jan 04, 2006 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File
Replies: 6
Views: 1143

You can also click the Verify button in the Configuration File editor (found under the Tools menu in Manager).
by ray.wurlod
Wed Jan 04, 2006 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Login Issues
Replies: 4
Views: 1553

Try logging in with fully qualified names, for example Machine1\Bob.
by ray.wurlod
Wed Jan 04, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best practise
Replies: 4
Views: 1039

As many as you like. You can create configuration files for one processing node (for small jobs) through to 16 or even more processing nodes (for large jobs). Depending on how your file systems are laid out, you can specify disk and scratch disk resources to spread the I/O around as much as possible...