Search found 53125 matches

by ray.wurlod
Fri Sep 04, 2009 2:47 pm
Forum: General
Topic: Oracle migration 9 to 10.g
Replies: 6
Views: 1692

XMETA has a minimum version of Oracle 10g anyway, so that would be OK.
by ray.wurlod
Fri Sep 04, 2009 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing Count based transformation in 4 nodes
Replies: 5
Views: 5118

Re: Processing Count based transformation in 4 nodes

There is no way you can force there to be the same number of rows on each of four nodes if the total number of rows is not a multiple of 4.
by ray.wurlod
Fri Sep 04, 2009 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenate without transformer
Replies: 1
Views: 1472

Modify stage can not, as a general rule, perform operations that take two inputs. Therefore concatenation is not an operation that a Modify stage can perform. Transformer is the correct stage for the task. You could create your own (Build) stage, you could use an External Filter stage, but Transform...
by ray.wurlod
Fri Sep 04, 2009 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to fetch one custid associated with multiple processids.
Replies: 2
Views: 1041

select CustID, Count(*) from table group by CustID having Count(*) > 1; In DataStage split your stream of rows into two using a Copy stage, and count the rows for each CustID group in an Aggregator on one of those streams before joining the two streams (using a Join stage) on CustID. Filter only th...
by ray.wurlod
Fri Sep 04, 2009 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import from fixed length file
Replies: 51
Views: 13575

Read the file using a single VarChar column. Your file is NOT fixed-length format, which would require every record to contain the same number of characters. Specify none for the field delimiter. Determine the record type in a Filter stage or in Transformer stage constraints and parse the separate r...
by ray.wurlod
Fri Sep 04, 2009 2:25 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: DS Change Capture
Replies: 1
Views: 8144

Is this question about InfoSphere Transformation Extender (TX) or about DataStage parallel jobs?

Please post in the Enterprise Edition forum if it is not about TX - the forum in which you did post is for that product only. The product used to be called DataStage TX but is no longer thus called.
by ray.wurlod
Thu Sep 03, 2009 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unique requirement to combine two files
Replies: 9
Views: 2770

ArndW wrote:Why not use an inner join in a join stage or a lookup stage (choose either link as a master) and have both Col2's go to the output?
A full outer join would be needed to achieve all of the output specified. Other than that quibble I, too, would recommend using a Join stage.
by ray.wurlod
Thu Sep 03, 2009 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: group by issue
Replies: 13
Views: 2562

The "fork join" model suggested by Sainath seems to me to be the way to go.
by ray.wurlod
Thu Sep 03, 2009 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: In what scenario can we not use a hash file
Replies: 6
Views: 1683

A Hashed File is the mechanism by which database tables in the UniVerse database (and therefore in the DataStage Engine database) are implemented. You can do anything with a hashed file that you can do with any other database table stage, and a couple more things as well. It's "hashed", no...
by ray.wurlod
Thu Sep 03, 2009 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to use update only in ODBC stage
Replies: 3
Views: 1621

He did. Check whether ODBC drivers are installed.
by ray.wurlod
Thu Sep 03, 2009 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: retain duplicates out of hash file
Replies: 16
Views: 7222

The UniVerse connection already exists, and is called localuv.
by ray.wurlod
Thu Sep 03, 2009 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rouitne to create the file in appending mode
Replies: 3
Views: 1757

... and, within the ELSE path of the OPENSEQ statement, you can use a CREATE statement to force the file to exist.
by ray.wurlod
Thu Sep 03, 2009 3:01 pm
Forum: General
Topic: Can't create a new project
Replies: 2
Views: 1023

Welcome aboard.

Is this an Information Analyzer project or a project for some other product within IBM Information Server?
by ray.wurlod
Thu Sep 03, 2009 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import from fixed length file
Replies: 51
Views: 13575

Have you specified a length property for every field?
by ray.wurlod
Thu Sep 03, 2009 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server v. 7.5.x to Informational Server v 8.1
Replies: 5
Views: 1804

It IS trouble-free. But there's no performance gain - indeed there appears to be a slight performance diminution, probably caused by needing to interface with the Information Server services and the remote repository.