Search found 53125 matches

by ray.wurlod
Fri Nov 11, 2005 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Multiple rows in output from single row in input
Replies: 16
Views: 4276

I think you're going to need a custom stage for this. My first thought was that you have a horizontal pivot here, but you would need to generate an arbitrary number of columns in the row (based on the value of F1) prior to the Pivot stage. And DataStage doesn't work with an arbitrary number of colum...
by ray.wurlod
Fri Nov 11, 2005 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement control break in PX?
Replies: 8
Views: 2797

The partition number and partition count are also available in the Increment property of the Surrogate Key Generator and Column Generator (and, I believe, the Row Generator) stages.
by ray.wurlod
Fri Nov 11, 2005 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How much difference in performance PX can get vs. server
Replies: 2
Views: 868

In theory, at least, you can throw hundreds of servers at it, and make it go faster and faster (until you reach the point where you have more servers than rows, anyway). I'm not aware that anyone has done this yet with the Windows version but it is theoretically possible. Certainly we've set up EE o...
by ray.wurlod
Fri Nov 11, 2005 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing to Teradata Enterprise Stage
Replies: 11
Views: 6431

While you're figuring it out, you could make your server job multi-instance and run N instances each processing 1/Nth of the rows. You will, however, need to build a (parameter-driven) mechanism for selecting disjoint subsets of source rows. This will allow you to meet your deadline, albeit as a wor...
by ray.wurlod
Fri Nov 11, 2005 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uv command to create ds project
Replies: 27
Views: 11697

Oops, forgot about the NAME column! SELECT @ID, NAME, PATH FROM UV.ACCOUNT; to see what Arnd means. You can probably figure out what you need to do to update or replace your particular entry. If you're bored to death, why not establish your own personal centre of excellence in DataStage documentatio...
by ray.wurlod
Fri Nov 11, 2005 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we send email from DS jobs???
Replies: 11
Views: 3223

If you're on a maintenance/support contract (and they make it very difficult not to be), upgrades come at no charge. It's part of what you're paying for.
by ray.wurlod
Fri Nov 11, 2005 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: variable NullToZero not defined
Replies: 6
Views: 2071

Export NullToZero Transform from another project, selecting the "include read-only objects" option. You will then be able to import it into the project from which it has been deleted. It will still be read-only.
by ray.wurlod
Fri Nov 11, 2005 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing unwanted Parameters From Job
Replies: 4
Views: 1011

But wait!!!

Check out Parameter Manager for DataStage brought to you by the good folks who run this site.
by ray.wurlod
Fri Nov 11, 2005 3:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing unwanted Parameters From Job
Replies: 4
Views: 1011

Even if you took them out with UniVerse/SQL you would still need to re-compile. The old object code has the old parameter definitions compiled in.
by ray.wurlod
Fri Nov 11, 2005 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem using Link Partitioner and Hash lookup
Replies: 12
Views: 3566

Stopping the job is the cause of the problem. There's a process still waiting to read data from a named pipe - you've stopped the job, so no data come along the pipe, and the waiting process takes a timeout. If you choose to stop a job in which any form of inter-process communication is occurring, t...
by ray.wurlod
Fri Nov 11, 2005 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to pass job parameters from a file
Replies: 5
Views: 1869

The problem with Martin's solution is that you need the (user-written) GetParm routine. It doesn't ship with DataStage. Someone wrote it at, or for, Martin's site.
by ray.wurlod
Fri Nov 11, 2005 3:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding the jobs that use a field in a hash file
Replies: 4
Views: 997

If you've been punctilious with maintaining the link between the table definition in the Repository and the Hashed File stages in all jobs (that is, always loading from or saving to the Repository), then you should be able to use Usage Analysis in the Manager to show you the jobs in which that table...
by ray.wurlod
Fri Nov 11, 2005 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The job has to abort after 5 rows enter into the table.
Replies: 8
Views: 2573

You will need to set that table to auto-commit - that is, one row per transaction. Otherwise the job will abort without having sent a commit statement!
by ray.wurlod
Fri Nov 11, 2005 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport - Not all objects in dsx
Replies: 2
Views: 938

If you hack the repository to make some objects read-only, you will need to ensure that you include read-only objects in the export. To be honest, I'm not sure how (or if it is even possible) to specify that to the dscmdexport command.
by ray.wurlod
Fri Nov 11, 2005 3:32 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Error loading Metadata.
Replies: 9
Views: 7073

It may also be that you lack SELECT privilege on the relevant system tables, the ones that contain the metadata (in DBA talk, definitions of tables, columns and other database objects). Check with your DBA if you have access.