Search found 53125 matches

by ray.wurlod
Wed Jan 10, 2007 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage Access Error
Replies: 6
Views: 1958

The privileges are required so that DataStage can determine the partitioning to be used when you specify a Partition Table property.

SELECT privileges to system tables are harmless; they do not allow you to break anything, and therefore should be granted by all but the most paranoid of DBAs.
by ray.wurlod
Wed Jan 10, 2007 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while deleting a job
Replies: 25
Views: 9635

It's not enough to check disk space "now" - you must check while the job is running. You can have lots of free space "now" that is all consumed while the job is running. From the Administrator client, at a time when you have exclusive access to the project, execute the command DS.CHECKER (this is th...
by ray.wurlod
Wed Jan 10, 2007 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single records to multiple records.
Replies: 8
Views: 1839

This approach requires careful setting of the Format in the target Sequential File stage; set both field delimiter and quote character properties to 000 and output just one VarChar column. Why aren't you using a Pivot stage? You may as well use a server job; what you are doing would be faster, and t...
by ray.wurlod
Wed Jan 10, 2007 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure during execution of operator logic
Replies: 10
Views: 9329

These intermittent "terminated unexpectedly" with no further information are even more infuriating to try to diagnose than most intermittent errors. I think we need to begin a concerted campaign to make sure that the support organization gets to hear of every one of them in the hope that better diag...
by ray.wurlod
Wed Jan 10, 2007 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: load(DB2) doesn`t work
Replies: 16
Views: 5001

The stage goes to DB2 and checks the partitioning of the table whose name you supply via the tool to the right of the partitioning algorithm. Make sure that an appropriate table name is given (typically the table you're proposing to load).
by ray.wurlod
Wed Jan 10, 2007 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal field problem
Replies: 4
Views: 1468

Search would have revealed to you that Decimal data are always displayed with leading an trailing non-significant zeroes, so that you can be sure that precision and scale are working correctly, and so that they can correctly populate fixed-width format files. Such decimal values can correctly be lo...
by ray.wurlod
Wed Jan 10, 2007 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why do we need fixed width columns ?
Replies: 9
Views: 2007

Have you tried multiple readers with delimited text files? Allegedly it became possible (version 7.5.1?).
by ray.wurlod
Wed Jan 10, 2007 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating a composite column
Replies: 6
Views: 1469

If the topic is resolved to your satisfaction, please mark it thus. If you feel that it's not resolved but a workaround exists, please mark it thus.
by ray.wurlod
Wed Jan 10, 2007 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue storing value from a job
Replies: 3
Views: 791

... or a server Shared Container containing a server Transformer.

A server Transformer is not the same as a BASIC Transformer; one supports lookups and the other does not.
by ray.wurlod
Wed Jan 10, 2007 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Default Code in Change Capture
Replies: 2
Views: 767

The documentation will tell you that these codes must be integers. You can add a Modify stage downstream; use lookup_string_from_int16() to convert your SmallInt (or lookup_string_from_int32() to convert your Integer) values to the string of your choice.
by ray.wurlod
Wed Jan 10, 2007 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ERROR : expecting 0 segments, read 1 segments
Replies: 6
Views: 7611

Looks like there's a problem with partial deletion of the Data Set.

Try deleting it using the GUI or orchadmin command before running the job sequence that populates it.

Are you using the same configuration file when populating the Data Set as when reading from it?
by ray.wurlod
Wed Jan 10, 2007 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parrallel extender on windows 2000
Replies: 6
Views: 2586

Version 7.5x2 may or may not run on Windows 2000. It is not supported on that platform and is not guaranteed to run there. It is supported only on Windows 2003. Some people have got it running on Windows XP, but again this is not a supported platform for DataStage server; only for DataStage client.
by ray.wurlod
Wed Jan 10, 2007 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: slow read from dataset - combinability mode issue?
Replies: 12
Views: 3970

op4 and op5 look like buffers to me. These have probably been inserted to avoid deadlocks due to different throughput rates. The Sequential File stage (import operator) uses the C I/O STREAMS module, and is very fast compared to all other read mechanisms. Also, be very wary of rows/sec as a metric; ...
by ray.wurlod
Wed Jan 10, 2007 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: $ENV issue
Replies: 9
Views: 3023

$ENV tells DataStage to load the value from the executing user's operating system environment - you would have had to set up the environment variable in that user's .profile file, for example. To have DataStage load the value you set up in the Administrator, make the default value of the job paramet...
by ray.wurlod
Wed Jan 10, 2007 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping DataStage Control Jobs with Sleep Commands
Replies: 7
Views: 3304

It wasn't clear to me that that was a resolution - only something else that the OP had tried. Yes, it looks like it should have addressed the issue, but was it a satisfactory resolution?