Search found 53125 matches

by ray.wurlod
Tue Sep 26, 2006 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replacing a string
Replies: 17
Views: 6988

Good point, but original question required "in Transformer stage".
by ray.wurlod
Tue Sep 26, 2006 7:30 pm
Forum:
Topic: Connecting to repository or moving repository...
Replies: 2
Views: 1338

You ought to have no problem having UniVerse side by side with DataStage; I run that particular combination. UniVerse RPC uses port number 31438, while DataStage RPC uses port number 31538. The only problem is that both telnet services (on Windows) want to use port number 23; disabling either or bot...
by ray.wurlod
Tue Sep 26, 2006 7:14 pm
Forum: IBM QualityStage
Topic: How do you see the rows which have fallen into unhandled pat
Replies: 8
Views: 4278

"Unhandled pattern" is a column in the report from an Investigation. If that field (unhandled pattern) is populated, then the row has an unhandled pattern. Note that there is also "unhandled string" which can be useful in deciding whether or not you need to create a new rule or a rule override.
by ray.wurlod
Tue Sep 26, 2006 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Split single row into multiple rows
Replies: 1
Views: 891

The text marks indicate that your column width may not be adequate, rather than separate lines (unless you are selecting from a multi-valued field, in which case you can use DataStage's "normalize on" capability). You can override the default column width with a FMT keyword in your UniVerse query. B...
by ray.wurlod
Tue Sep 26, 2006 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Add month to date
Replies: 5
Views: 1689

There's a link on this page to some routines including one that adds months to a date.
by ray.wurlod
Tue Sep 26, 2006 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: create multiple records from a single record.
Replies: 5
Views: 1895

The best solution will have 20 output links. Resize the stage icons so that it doesn't look so messy. Depending on the target, you may not even need a Link Collector; there's no reason that you can't have twenty links feeding independent inserts into a database table. Or even into twenty separate te...
by ray.wurlod
Tue Sep 26, 2006 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS UNIX Services
Replies: 1
Views: 897

By default, none in server jobs. It is recommended that you configure the deadlock daemon for autostart (in dsdlockd.config file). Depending on how you use the product, you may need other services started. For example, if you are using the QualityStage plug-in, then you will need qsrtmngr to be star...
by ray.wurlod
Tue Sep 26, 2006 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read/Write Cache Size
Replies: 1
Views: 1152

No, provided you have the memory available to support your settings.
by ray.wurlod
Tue Sep 26, 2006 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find row that causes error
Replies: 13
Views: 5790

That's surprising, as the link variables work well with ODBC stage types. Let's say your output link to SQL server from the Transformer is called SendData and your output link to your rejects file from the Transformer is called Rejects. You have marked Rejects as handling rejects by checking the box...
by ray.wurlod
Tue Sep 26, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job hangs
Replies: 8
Views: 2049

There are two numbers associated with a UNIX DataStage process - the internal DataStage number and the process ID. Which did you choose for your UNLOCK command?
by ray.wurlod
Tue Sep 26, 2006 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic:
Replies: 7
Views: 2564

"0X" in DataStage BASIC pattern matching is a wildcard. The value marks (indicated by system variable @VM) create a multi-valued pattern, so that the Matches operator is satisfied by a match against any of the individual patterns. So my expression is true if InLink.FirstCol has a value that ends in ...
by ray.wurlod
Tue Sep 26, 2006 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 14
Views: 7065

Congratulations on successful detective work! Yours is a good solution.

You could have used a filter command in the Sequential File stage, perhaps using sed or awk to change the column in question. But there's nothing at all wrong with your solution.
by ray.wurlod
Tue Sep 26, 2006 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [Server] dsjob returncode list
Replies: 3
Views: 2682

I don't think that will help - those codes are job status codes. These only become the exit status of dsjob if the -jobstatus option is used (otherwise they are available on stderr from dsjob). The value 6 is not represented. I am not aware of a published list of exit codes for dsjob. Source code fo...
by ray.wurlod
Tue Sep 26, 2006 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create a dummy hashed file
Replies: 7
Views: 1474

Why not use a Hashed File stage or a UV stage with the "create" option selected?
by ray.wurlod
Tue Sep 26, 2006 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Link Direction within Job via Routine
Replies: 8
Views: 1651

You do need to be alert to the fact to which Kim alluded, namely that "Input" and "Output" are stage-centric terms. A stage that reads data from a persistent store will have an output link, whereas a stage that writes data to persistent storage will have an input link.