Search found 53125 matches

by ray.wurlod
Tue Nov 13, 2007 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal datatype handling in modify stage
Replies: 5
Views: 2307

No, one or the other (not both). Usually I prefer to KEEP unmodified columns - it seems less work.
by ray.wurlod
Tue Nov 13, 2007 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UDB API stage hang on the job
Replies: 5
Views: 1337

By "open" I assume you mean "drag onto the design area". Have you tried dragging one from the Stage Types branch of the Repository toolbar? Or do you mean open the properties of one that is already in a job design? Is your client on Windows XP sp2 and, if so, do you have the xpsp2 client patch insta...
by ray.wurlod
Tue Nov 13, 2007 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime Error
Replies: 4
Views: 1694

We'd love to help you out - which way did you come in?

Etiquette Note
You do NOT hijack others' threads. Your problem is a different one - for example it does not mention the downcast() function. It's a new problem so you should begin a new thread. Try to devise a meaningful Subject for it.
by ray.wurlod
Tue Nov 13, 2007 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to install Datastage Command Stage Plugin
Replies: 4
Views: 2629

Assuming that it's not already installed (as most administrators seem to install all plug-ins these days) use the Package Installer (from the Start menu on the server) to install it. You will find a folder called DataStage Packages on your Information Server installation media (CD/DVD).
by ray.wurlod
Tue Nov 13, 2007 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EtlStats
Replies: 7
Views: 4578

Search
I know for a fact that "DSU.ExecDOS not cataloged" has been answered in the past.
by ray.wurlod
Tue Nov 13, 2007 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: An index is out of bounds
Replies: 8
Views: 2263

Can you post the exact error message in its entirety, so we can see the stage type that is generating it? Have you involved your support provider (since you may have uncovered a bug)? Are you using any routines?
by ray.wurlod
Tue Nov 13, 2007 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FLTABSZ setting has any relation with DSJE_TIMEOUT?
Replies: 4
Views: 2713

FLTABSZ sets the depth of the file (table) lock table in memory, FSEMNUM sets the breadth of the lock table in memory. Neither would cause a timeout error - if FLTABSZ were too small you might get a "lock table full" fatal error, but this would be quick, not a timeout.
by ray.wurlod
Tue Nov 13, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal datatype handling in modify stage
Replies: 5
Views: 2307

Why not just include QT in a KEEP specification?
by ray.wurlod
Tue Nov 13, 2007 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading the data into Teradata View using Enterprise Stage
Replies: 5
Views: 2327

Loading to VIEWS is unsupported.

Seems pretty clear to me!
by ray.wurlod
Tue Nov 13, 2007 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed running a 2-node job on distinct machines
Replies: 7
Views: 2934

Is PXEngine mounted/visible on the other machine?
by ray.wurlod
Tue Nov 13, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_CONFIG1000
Replies: 12
Views: 3416

A "check" covers many possibilities. A query against the table is just one of them. Inspection tools such as ANALYZE.FILE are another. Repair tools such as UVFIXFILE or fixtool are yet another.
by ray.wurlod
Tue Nov 13, 2007 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator - grouping based on all columns
Replies: 2
Views: 907

Upstream of the Aggregator stage use a Column Generator stage to generate a new column containing a constant. Perform the calculation on that. Discard it downstream of the Aggregator stage, perhaps in a Copy stage (which is permitted to drop columns).
by ray.wurlod
Tue Nov 13, 2007 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with Dataset stage while using instances as target
Replies: 5
Views: 2101

As well, you should name your Data Set control files with a ".ds" suffix.

Best practice is to create a directory in which to store Data Set and File Set control files.
by ray.wurlod
Tue Nov 13, 2007 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort the job from "After job subroutine"
Replies: 21
Views: 10455

You could try DSLogFatal if you really want to abort the job from within a called subroutine. This is definitely not something that would be in my "best practice" category!
by ray.wurlod
Tue Nov 13, 2007 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieve inforformation in Dataset Stage
Replies: 1
Views: 1124

DSGetJobInfo(hJob,DSJ.STAGELIST) will return a list of active stages. You may prefer DSJ.JOBFULLSTAGELIST to get all stage names. From that you will need to use DSGetStageInfo() to retrieve a list of link names, and from each link DSGetLinkInfo() can return information about the link. However, there...