Search found 53125 matches

by ray.wurlod
Mon May 10, 2010 10:55 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 3014

I would imagine that the additional attributes will be stored as additional attributes and not affect (other than maybe they can be seen by) other tools such as MWB. I haven't had a time to browse XMETA fully since a couple of point releases back, so can not (yet) speak authoratively on this one. Bu...
by ray.wurlod
Mon May 10, 2010 10:52 pm
Forum: Site/Forum
Topic: where i can get datastage projects...
Replies: 3
Views: 5045

It will be easier to have your company create a sandbox project for you to "play" (learn) in. And free.
by ray.wurlod
Mon May 10, 2010 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot connect datastage, errors 39202 and 80011
Replies: 11
Views: 14884

Not the same problem, not least because Windows does not run on Itanium. But the inforamation may benefit anyone lucky enough to find it at the bottom of this thread.
by ray.wurlod
Mon May 10, 2010 4:18 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 3014

What metadata are you likely to change within IA? (And, for that matter, how?)

Structures of tables within IADB are not documented, but are very easy to deduce.
by ray.wurlod
Mon May 10, 2010 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need help for join stage
Replies: 2
Views: 1429

Yes, or full outer join and Filter.

Make sure that data are key partitioned and sorted on the Join key.
by ray.wurlod
Mon May 10, 2010 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop Table
Replies: 2
Views: 2370

... or automatically if you are also choosing to re-create the table.
by ray.wurlod
Mon May 10, 2010 4:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Intelligent word wrapping
Replies: 22
Views: 6430

Welcome aboard. There's nothing out of the "natively parallel" box that will do this for you, but you could write your own routine. That said, you can use a server job, a server shared container or a BASIC Transformer stage and make use of the Fmt() function. For example load a stage varia...
by ray.wurlod
Mon May 10, 2010 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is max size for $APT_BUFFER_FREE_RUN
Replies: 1
Views: 1940

Parallel Job Advanced Developers Guide Chapter 6.

Since it's expressed as a percentage, the maximum value is 100.
by ray.wurlod
Mon May 10, 2010 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is it possible to install two versions of datastage s/w
Replies: 6
Views: 2418

Good luck with the "PC" part. Do you mean client only? In that case the answer is yes, but only one active at any one time. Use Multi Client Manager to switch between them. If you want to install multiple servers, then only one of those can be post version 7.5. And you will find that they ...
by ray.wurlod
Mon May 10, 2010 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Database Vs Datastage
Replies: 11
Views: 5706

You're not necessarily wrong, or even worng. :lol:

If partitioning is on something other than the sort key, then chances are that it will disrupt sorting - though existing sort order per partition is likely to be preserved.

Again, sketch it out on paper or a whiteboard to understand what occurs.
by ray.wurlod
Mon May 10, 2010 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Sequencer Error
Replies: 3
Views: 2377

That message is not from a Sequencer.

A Sequencer simply makes an any/all decision to fire its output depending on whether its input triggers have fired.

The word you need is Sequence.
by ray.wurlod
Mon May 10, 2010 3:46 pm
Forum: General
Topic: Masking Only Part of the Field in a Record
Replies: 2
Views: 1174

Not out of the box. You can write your own data masking routines, though. Or you can deploy an additional product like Optim that can perform the data masking task.
by ray.wurlod
Mon May 10, 2010 3:42 pm
Forum: Site/Forum
Topic: where i can get datastage projects...
Replies: 3
Views: 5045

As far as I am aware there is no such mechanism - certainly IBM does not provide trial editions (unless there's a good chance of a sale), and DSXchange does not have this capability. One possibility is that you can access a DataStage project in the cloud - search here and Vincent McBurney's blogs fo...
by ray.wurlod
Mon May 10, 2010 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Database Vs Datastage
Replies: 11
Views: 5706

As I said, think about it. Sketch it out with pencil and paper. Make sure you are partitioning on the sort key. This means that all rows with the same value of the sort key will be on the same partition as each other; all rows with a different value of the sort key will be on the same partition as e...
by ray.wurlod
Mon May 10, 2010 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle a large input string more than 10000 character
Replies: 4
Views: 3269

You may have hit a size limit for a Value in the Cycle. I'm not aware of any limit, but that doesn't mean there isn't one. Try halving the size of the value until the error goes away (stick with powers of 2, probably), then slowly increase until the error re-appears. I suspect this is a limit in the...