Search found 53125 matches

by ray.wurlod
Tue Jan 16, 2007 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding merge stage
Replies: 17
Views: 5175

TOTALLY different issue. Please begin a new thread.
by ray.wurlod
Tue Jan 16, 2007 10:12 pm
Forum: General
Topic: how to connect Progress Database ?
Replies: 2
Views: 1868

You can also run Progress utilities to dump data into flat file formats (even initiating these utilities from DataStage) and process those files. This approach allows hierarchical structures to be unpacked.
by ray.wurlod
Tue Jan 16, 2007 9:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see the previous logs of multi-instance jobs.
Replies: 2
Views: 807

Check the purge settings for that particular job (choose Clear Log from the Job menu to see them).
by ray.wurlod
Tue Jan 16, 2007 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Editing Configuration file
Replies: 5
Views: 1065

In the GUI tool choose Save As to create a new configuration file name (which ends in ".apt") and edit that. Don't forget to click Check to make sure that there are no errors or warnings.
by ray.wurlod
Tue Jan 16, 2007 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in using the Modify Stage
Replies: 5
Views: 1373

There is an error in the Parallel Job Developers Guide that asserts that the NullToValue() function is available in the Modify stage. It is not. The function that is available in the Modify stage, as noted above, is handle_null().
by ray.wurlod
Tue Jan 16, 2007 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Directory Projects in other location
Replies: 5
Views: 1344

A quick fix is to set the value of PWD to "." (the current directory).
by ray.wurlod
Tue Jan 16, 2007 8:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance tuning
Replies: 6
Views: 1702

How about using a Remove Duplicates stage? Or even a unique Sort?
by ray.wurlod
Tue Jan 16, 2007 8:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing file format from UNIX to Windows
Replies: 6
Views: 1159

Re: Changing file format from UNIX to Windows

saikir wrote:The existing job accepts only Windows line termination.

But it could easily be changed (stage properties of Sequential File stage).
by ray.wurlod
Tue Jan 16, 2007 8:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing the same job in different sessions
Replies: 3
Views: 672

It will never be possible.

In Version 8 the message changes to something like "opened by user xyz, would you like to open in read-only mode?". So, while it's possible that more than one copy might be open, only one of these (the first-opened) is editable.
by ray.wurlod
Tue Jan 16, 2007 8:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2\UDB Enterprise Stage doubt
Replies: 3
Views: 1521

1. 32-bit. 2. It's quicker to truncate. And the permissions required are different. 3. When you choose DB2 partitioning algorithm there is a tool to the right of the drop-down list, which opens a dialog in which you can name the partition table. 4. You don't need to - the DB2 partitioning algorithm ...
by ray.wurlod
Tue Jan 16, 2007 8:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help immediately
Replies: 7
Views: 1884

An inner join on an Entire-partitioned constant (the solution I posted earlier) will generate the required Cartesian product.
by ray.wurlod
Tue Jan 16, 2007 8:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view all records from a sequential file stage
Replies: 1
Views: 1011

Does 0x04 (Ctrl-D) appear anywhere in your data? UNIX (and the STREAMS I/O module in C) will recognize this as an end-of-file marker.

Add a rejects link to the Sequential File stage into a Peek stage. Look in the entry logged by the Peek stage at the raw form of the rejected records.
by ray.wurlod
Tue Jan 16, 2007 8:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding merge stage
Replies: 17
Views: 5175

Please post the first couple of lines from each of the input files. Please also verify that these are true text files, not hashed files.
by ray.wurlod
Tue Jan 16, 2007 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pulling out Text in between tags
Replies: 11
Views: 2405

Perhaps two Index() functions as the arguments for substringing; one for the open tag and one for the close tag, would be a more general solution?
by ray.wurlod
Tue Jan 16, 2007 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ideal maximum limit for a hash file
Replies: 11
Views: 2694

Use the Hashed File Calculator; it will take storage overheads into account. Even so, with one million records with 12 bytes of data, that's still only 26MB or so. That is well within the range that a hashed file can manage.