Search found 53125 matches

by ray.wurlod
Tue Jul 11, 2006 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: phantom errors
Replies: 2
Views: 1265

The "list of errors and recommended actions" manual is promised for the next ("Hawk") release. It does not currently exist as a single document. Some error codes can be decoded via the SYS.MESSAGE table in DataStage. This has six digit (character) keys: SELECT * FROM SYS.MESSAGE WHERE @ID = '081011'...
by ray.wurlod
Tue Jul 11, 2006 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BASIC Transform vs Transform
Replies: 14
Views: 5445

Not so much "overhead of BASIC" as "overhead of translation into and out of BASIC (typeless) environment from the C++ (strongly typed)envionment". It is likely that this overhead will cause perceived slowness in server jobs in Hawk, because the same transitions need to occur (everything operates in ...
by ray.wurlod
Tue Jul 11, 2006 11:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling exceptions
Replies: 10
Views: 2180

Help for the job sequence properties is clear on how the compilation options work. It depends on whether an Exception Handler exists and on whether explicit handling (what you used to have) exists.
by ray.wurlod
Tue Jul 11, 2006 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequencing jobs through UNIX
Replies: 8
Views: 1485

... and being granted permission to schedule on UNIX (cron and at) :twisted:
by ray.wurlod
Tue Jul 11, 2006 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation - Role Separation Issues
Replies: 6
Views: 3347

It's because you have not done the binding of DataStage roles to Windows groups as described in the Administrator guide.
by ray.wurlod
Tue Jul 11, 2006 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Issue
Replies: 17
Views: 3906

17 lightweight things might load the system less than two heavy-duty things.
by ray.wurlod
Tue Jul 11, 2006 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile key allowing null values
Replies: 5
Views: 1317

Server jobs do not enforce data types or nullability. Therefore, even though the Key column is marked Not Null, you are not prevented from sending NULL. It is up to you to prevent this from happening. Or switch to parallel jobs, where data types and nullability are enforced.
by ray.wurlod
Tue Jul 11, 2006 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Issue
Replies: 17
Views: 3906

Not concurrency, just total load. Monitor your operating system to determine where the bottlenecks are; CPU, memory, I/O throughput, network bandwidth are the primary candidates.
by ray.wurlod
Tue Jul 11, 2006 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequencing jobs through UNIX
Replies: 8
Views: 1485

cron running dsjob (via rsh)?
by ray.wurlod
Tue Jul 11, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI and Decimal type
Replies: 16
Views: 2634

Hashed files don't have data types. Everything is stored as a delimited string. What you store is what you get.
by ray.wurlod
Tue Jul 11, 2006 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query about dscmdexport
Replies: 13
Views: 5668

Did you "find" that solution because Craig had posted it a mere 15 minutes before your post? :o
by ray.wurlod
Tue Jul 11, 2006 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BASIC Transform vs Transform
Replies: 14
Views: 5445

Folks using 7.5x2 clients to access 7.5.1A servers, for which combination the Palette is horked.
by ray.wurlod
Tue Jul 11, 2006 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: custom trigger in Execute command stage
Replies: 2
Views: 768

Code: Select all

$ReturnValue Like "0X'0'0X" Or $ReturnValue Like "0X'1'0X"

or

Code: Select all

Index($ReturnValue,0) > 0 Or Index($ReturnValue,1) > 0

or just

Code: Select all

Index($ReturnValue,0) Or Index($ReturnValue,1)
by ray.wurlod
Tue Jul 11, 2006 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BASIC Transform vs Transform
Replies: 14
Views: 5445

You don't have to add it to your Palette unless you want it there. You can use it directly from the Stage Types branch of the Repository.
by ray.wurlod
Tue Jul 11, 2006 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error
Replies: 11
Views: 1981

If it can't open the hashed file, then the improper data type may have resulted from an attempt to use a file variable that relates to a file that is not - or is no longer - open. This can occur, for example, if the hashed file was opened successfully when the job began but was force closed or delet...