Search found 53125 matches

by ray.wurlod
Thu Dec 29, 2005 3:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Massively parallel processing design and implementation
Replies: 1
Views: 787

Massively parallel processing design and implementation

The Furbeowulf project is achieving massively parallel processing design and implementation with commodity products. Their use of a "watchdog" processor to manage both process allocation and network traffic is particularly clever.
by ray.wurlod
Thu Dec 29, 2005 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary:error in dlopen
Replies: 8
Views: 4926

Please post the detail of the error message, which includes information about what stage it occurred in. You also need to tell us what kind of stage was involved, and an overview of the job design would help also. Ultimately we need to establish what was trying to be opened, so that we can narrow do...
by ray.wurlod
Thu Dec 29, 2005 3:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range values in error tables
Replies: 1
Views: 819

The Oconv() function supports range checking. Oconv(value,"Rn,m") returns the value itself if it is between n and m inclusive, or "" otherwise. Multiple ranges can be tested with a single Oconv() function, for example Oconv(value,"R1,10;101,110;201,210") returns t...
by ray.wurlod
Thu Dec 29, 2005 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR: Function call is illegal at this point
Replies: 4
Views: 1873

"Too big" might be too much data for a transaction. What is your commit rate (rows per transaction) setting? You could perhaps try committing more frequently rather than splitting the source file.
by ray.wurlod
Wed Dec 28, 2005 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS job with sole purpose to execute a unix script
Replies: 3
Views: 1270

Even simpler might be to use a before-job or after-job subroutine that invokes ExecSH. The Input Value field contains the UNIX command line needed to execute your script.

A more graceful method would be to use a job sequence containing an Execute Command activity.
by ray.wurlod
Wed Dec 28, 2005 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help in creating a Basic Program
Replies: 5
Views: 1019

DataStage does not support stand-alone BASIC programs - in DataStage you must only create routines that can be invoked by other DataStage components. Yes, you do this in the Routines branch or in the Job Control tab of job properties.
by ray.wurlod
Wed Dec 28, 2005 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: My routines locked need to release them
Replies: 5
Views: 1291

Search the forum for information about the UNLOCK command. You must have Administrator access to use this command.
by ray.wurlod
Wed Dec 28, 2005 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ignore.
Replies: 6
Views: 1405

The question might even be about ulimit.

Sasikiran, DataStage is a complex product - you really do need to be more specific with your questions. Welcome aboard, by the way. :D
by ray.wurlod
Wed Dec 28, 2005 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i hide the links in datastage jobs
Replies: 9
Views: 2287

I have one of those, but it uses SAP prescience (VE vill tell you how to run your business!).
by ray.wurlod
Wed Dec 28, 2005 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in job connecting to DB2UDB
Replies: 6
Views: 1924

That's a permissions problem. You will probably need your DB2 DBA to look at it. It's not a DataStage file.
by ray.wurlod
Wed Dec 28, 2005 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change capture
Replies: 2
Views: 1026

You MUST have access to the before Data Set - it's physically impossible to determine which rows have been deleted by inspecting the after Data Set.
by ray.wurlod
Wed Dec 28, 2005 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading null record form the source
Replies: 4
Views: 1003

Use a Reject link to trap the line that does not correspond to the metadata described in the schema.
by ray.wurlod
Wed Dec 28, 2005 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when checking operator: No conductor nodes found in ex
Replies: 2
Views: 1986

My guess is that you're writing to a Sequential File stage, and there is a node pool called export in the configuration file but none of the nodes in this pool is the conductor node (that is, also belongs to the default node pool).
by ray.wurlod
Wed Dec 28, 2005 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_BufferOperator warning
Replies: 2
Views: 2283

It's just a warning signifying that a time request from a system call returned a value that is earlier than the start time for the operator. By 0.353 seconds. It may be that the start time is obtained via a different system call, it may be that something odd happened with your system clock(s), it ma...
by ray.wurlod
Wed Dec 28, 2005 3:06 pm
Forum: Data Integration
Topic: fact table
Replies: 9
Views: 15799

From The Data Warehouse Lifecycle Toolkit by Kimball et al (pages 212-216 in the 1998 edition): Factless fact tables are the preferred method for recording events in a data warehouse where there is no natural numeric measurement associated with an event. Factless fact tables also are used to guarant...