Search found 53125 matches

by ray.wurlod
Wed Mar 19, 2008 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split single record to multiple records
Replies: 13
Views: 3082

There is an Ereplace() for parallel - it was published right here in DSXchange.
by ray.wurlod
Wed Mar 19, 2008 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while reading file from dataset file
Replies: 4
Views: 1927

Try it with forward slashes. The orchadmin utility really runs under UNIX, so expects forward slashes in pathnames. It will also be upset by spaces in the pathname, so you need to quote the pathname. orchadmin describe -s "D:/my datastage flat file/emps2.ds" Try to use a more meaningful fo...
by ray.wurlod
Wed Mar 19, 2008 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while load the data in sequential stage with jobpar
Replies: 8
Views: 1464

Make sure that the parameter reference (the string between the "#" characters in the passive stage field) exactly matches the job parameter name (in the job properties dialog).
by ray.wurlod
Wed Mar 19, 2008 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UCS-2
Replies: 20
Views: 5263

Then you need to use the Administrator client to build the Chinese map(s) that you require (probably BIG5 or GB2312, but also build the map of the same name but with a "-CS" suffix, which is used for communicating with your DataStage client). This only needs to be done once.
by ray.wurlod
Wed Mar 19, 2008 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filling gap records
Replies: 5
Views: 1159

That should work. You can use date arithmetic to get the two required dates where the key is the same. Set a flag in that case, use that flag to output the rows to a separate output, and bring them all together with a downstream Funnel stage.
by ray.wurlod
Wed Mar 19, 2008 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert hanging against Data warehouse
Replies: 20
Views: 4771

It's probably the connection to AS/400. Recall that every file on the AS/400 can be a "table", so when the connection starts and it asks the AS/400 for a list of tables, this can be huge. You can (should) configure the client software (or ODBC DSN definition) with a file name filter.
by ray.wurlod
Wed Mar 19, 2008 5:04 pm
Forum: General
Topic: Pattern read in the DataSet Stage.
Replies: 7
Views: 1358

Four Data Set stages, one Funnel stage. The Data Set stage can only read one Data Set (which is, itself, a parallel structure, so has at least as many data files as there are processing nodes).
by ray.wurlod
Wed Mar 19, 2008 5:03 pm
Forum: General
Topic: NFS Drive access related question
Replies: 9
Views: 3196

When you browse, and then select My Computer, can you see your G: drive then?
by ray.wurlod
Wed Mar 19, 2008 5:02 pm
Forum: General
Topic: ODBC Connection Error
Replies: 6
Views: 2045

It was the only way in back in the days of DataStage 2.2.
by ray.wurlod
Wed Mar 19, 2008 5:01 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: The Websphere Transformation Extender Design Studio V8.2
Replies: 12
Views: 11277

Encouragement

Someone has to be the pathfinder! Please post your "gotchas" here.
Best of luck.
by ray.wurlod
Wed Mar 19, 2008 4:59 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Manual abort of a job
Replies: 3
Views: 2824

Is this, indeed, a Transformation Extender (TX) job?
by ray.wurlod
Wed Mar 19, 2008 4:59 pm
Forum: General
Topic: Migration to Version 8
Replies: 13
Views: 4017

Yes.
by ray.wurlod
Wed Mar 19, 2008 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage error
Replies: 3
Views: 2737

Stop trying to do so much at once.
by ray.wurlod
Wed Mar 19, 2008 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Format-Handling
Replies: 4
Views: 1384

Read about the Matches operator in Transformer expressions.

Code: Select all

InLink.Column Matches "0N'.'2N"
returns "true" (1) if the incoming value consists of zero or more numeric characters followed by "." and then by two numeric characters, and "false" (0) if it does not.
by ray.wurlod
Wed Mar 19, 2008 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance
Replies: 7
Views: 1223

Welcome aboard. If you are looking for a professional consultant to assist, then there IS an easy answer. Otherwise how about you begin by defining "performance" in an ETL context. Actually, before you do that, search the forum for any/many of my explanations why rows/sec is a useless metric of "per...