Search found 53125 matches

by ray.wurlod
Thu Mar 06, 2008 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print Filenames from Seq File using FilePattern
Replies: 6
Views: 5333

OK, it works fine in 7.5.2 without RCP. So is it version 8 or is it RCP? Can you run a test (maybe a separate job) that does not use RCP? If that works, then RCP is the culprit: if it fails the same way it's a "feature" they seem to have introduced in the new version.
by ray.wurlod
Thu Mar 06, 2008 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to Remote DB2 V9
Replies: 5
Views: 1473

These days the 32-bit drivers tend to be in a directory called lib32 while the 64-bit drivers tend to be in the lib directory. Make sure that lib32 occurs before lib in your shared library search list, at least for DataStage processes.
by ray.wurlod
Thu Mar 06, 2008 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL loader error
Replies: 4
Views: 1072

Define "performance" in an ETL context.

Not failing would be a good start point.
by ray.wurlod
Thu Mar 06, 2008 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion issue
Replies: 7
Views: 1797

Store the one-liner as a Transform rather than as a Routine.
by ray.wurlod
Thu Mar 06, 2008 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert of string
Replies: 4
Views: 1673

Pivot stage.

You may need to parse the comma-delimited string into separate columns upstream of the Pivot stage, but once that's done you'll have a working solution.
by ray.wurlod
Thu Mar 06, 2008 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the path of the job?
Replies: 16
Views: 5266

Then I suggest you look for files wherever they are documented by the developers as having been written.
by ray.wurlod
Thu Mar 06, 2008 3:41 pm
Forum: General
Topic: Empty DSN: list
Replies: 2
Views: 1252

The reason for having a separate uvodbc.config file in each project is, as the documentation states, to give you the flexibility to access some, but not all, DSNs configured for DataStage from that project.
by ray.wurlod
Thu Mar 06, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Using MERGE
Replies: 11
Views: 2777

Get yourself a premium membership and read the remainder of my earlier post. Premium membership is less than 30c (Rs12) per day. Among other benefits it allows you to read posts by the five premium posters in their entirety. All revenue from premium membership is devoted to defraying the hosting and...
by ray.wurlod
Thu Mar 06, 2008 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSSetJobLimit in Job control tab.
Replies: 4
Views: 1016

As stated, there is no way to set a row limit for a parallel job (unless it is compiled in trace mode, which carries its own penalties and is only intended for diagnostic purposes) without designing one in. For example you could compare the row number in a Transformer stage with a job parameter's va...
by ray.wurlod
Thu Mar 06, 2008 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL loader error
Replies: 4
Views: 1072

Not sure of the cause. Obviously having zero rows of source data is the culprit - and a good workaround would be to check for this situation before starting the job - but why this happens is not clear. A DataStage job can manage a "zero rows" scenario in most cases, why not this one?
by ray.wurlod
Thu Mar 06, 2008 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete Project from Command line
Replies: 5
Views: 2112

It's a non-trivial process. The way that you set up the project (via copy commands) is so totally wrong. You may indeed be better off to delete the project directory then to clean up the system tables. The basics of cleaning up after deleting a project are described in this paper but there is likely...
by ray.wurlod
Thu Mar 06, 2008 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSSetJobLimit in Job control tab.
Replies: 4
Views: 1016

You are thinking like a server job developer.

For parallel jobs there is no way to set a row limit with the job compiled normally. If you compile the job in trace mode, only then can you set a row limit. And it's a row limit per node.
by ray.wurlod
Thu Mar 06, 2008 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Columns in a dataset
Replies: 4
Views: 1108

It's the underlying command used by the Data Set Management utility. It is documented in the Orchestrate Administration manual.
by ray.wurlod
Thu Mar 06, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CLOB datatype
Replies: 2
Views: 1377

Try VarChar(4000).
by ray.wurlod
Thu Mar 06, 2008 6:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Using MERGE
Replies: 11
Views: 2777

Arnd is apparently thinking of the parallel Merge stage which works differently. The server Merge stage directly reads two sequential files and effects a join between them. As you say, it has no View Data capability. But that should not prevent you from using some other utility, external to DataStag...