Search found 53125 matches

by ray.wurlod
Wed Jul 18, 2007 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: index maintenance, how to get it to work?
Replies: 4
Views: 1793

Have you checked for the user ID that runs DataStage jobs? Look in the second event in the job log ("environment variables").
by ray.wurlod
Wed Jul 18, 2007 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Effictive way of coding the mapping bet RDBMS and Star Model
Replies: 0
Views: 560

What else IS there?

To ensure referential integrity the ONLY technique (irrespective of how you code it) is to verify that the value occurs in the parent (dimension) table.
by ray.wurlod
Wed Jul 18, 2007 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accomadating Shared container in Parallel job
Replies: 2
Views: 947

The last part of Chapter 2 of Parallel Job Developers Guide outlines the restrictions.
by ray.wurlod
Wed Jul 18, 2007 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SHLIB_PATH
Replies: 4
Views: 1276

The environment variables in Administrator are listed in the DSParams file in your project directory on the server. Edit this file to add SHLIB_PATH and your issue will be resolved.
by ray.wurlod
Wed Jul 18, 2007 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File which can hold more than 2 GB data
Replies: 23
Views: 6482

There is no a priori knowledge of the size of the hashed file when "allow cache" is set at design time. If the hashed file is too big, then a warning is issued, and the hashed file is accessed on disk. But this can not be ascertained until run time.
by ray.wurlod
Wed Jul 18, 2007 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with executing a batch file from Command stage
Replies: 8
Views: 1576

There's nothing in the BAT file to tell it to come back, so why would it?
by ray.wurlod
Wed Jul 18, 2007 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while scheduling DS server job
Replies: 5
Views: 1184

The problem is that it can't find an AT command. This is weird, because AT is internal to DOS.
by ray.wurlod
Wed Jul 18, 2007 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading to Sybase is very slow
Replies: 4
Views: 1005

Sure it's slow - update always is, particularly if there are indexes and constraints.

Why not use bulk loader?
by ray.wurlod
Wed Jul 18, 2007 2:42 pm
Forum: General
Topic: Sorting on huge volume
Replies: 8
Views: 2608

If the column(s) on which you are sorting are indexed, then it will be faster to sort in the database. This is because index values are stored in sorted order, so to "sort" simply involves scanning along the leaf nodes of the B-tree index (or straight through a bitmap index).
by ray.wurlod
Wed Jul 18, 2007 2:40 pm
Forum: General
Topic: Job Scheduling
Replies: 6
Views: 1705

In Director, the server time is displayed on the right-hand end of the status bar. This can be useful if the client and server are in different time zones.
by ray.wurlod
Wed Jul 18, 2007 2:39 pm
Forum: General
Topic: Why are we stuck with Datastage ?
Replies: 9
Views: 4067

Your use of "stuck with" implies a negative attitude. By all means code it yourself, if you're prepared to maintain your code indefinitely into the future, and can realize at least the flexibility and performance that is possible with DataStage. DataStage has now been around for more than 10 years. ...
by ray.wurlod
Wed Jul 18, 2007 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2(v 9.1) database server from Datastage
Replies: 3
Views: 1706

The solution is to prevent it (the error), by not providing an invalid argument (property) value for connecting to DB2.
by ray.wurlod
Wed Jul 18, 2007 2:32 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: split file for set of records
Replies: 5
Views: 3823

Welcome aboard.

And you want to perform this split with a TX map? Surely it would be easier using a UNIX command such as split or awk - search the forum for examples.
by ray.wurlod
Wed Jul 18, 2007 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2(v 9.1) database server from Datastage
Replies: 1
Views: 1056

Personal Note
I do not even consider answering questions posted in the incorrect forum by experienced posters (in which I include employees of consulting firms).
by ray.wurlod
Tue Jul 17, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup filesets and "Not enough Space" errors
Replies: 22
Views: 4534

You can disable combination at an individual stage level, rather than globally for the job. That might ameliorate your performance woes a little.