Search found 53125 matches

by ray.wurlod
Wed Dec 07, 2005 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of data type from Char to Date in PX
Replies: 4
Views: 1001

Modify stage does not generate new columns - for this you need stage types such as Column Generator or Transformer stage.
by ray.wurlod
Wed Dec 07, 2005 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage not matching conditions
Replies: 1
Views: 841

Duplicate post. Moderator please delete. Others please reply to other post on this subject.
by ray.wurlod
Wed Dec 07, 2005 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage not matching conditions
Replies: 10
Views: 11680

Default values are not set in a Lookup Stage. There are lots of other stages where it can be done, for example a Modify stage using the handle_null() function.
by ray.wurlod
Wed Dec 07, 2005 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running Multiple Job
Replies: 5
Views: 983

To run an instance from Director, fill in the Invocation ID field.

To run from an API or command line, use job.instanceID syntax.

For example

Code: Select all

dsjob -run projname jobname.firstinstance
dsjob -run projname jobname.secondinstance
(probably with different parameter settings).
by ray.wurlod
Wed Dec 07, 2005 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 12519
Replies: 4
Views: 1338

The problem is "Available memory exceeded". It's reported by a Transformer stage (because errors are reported by active stages) but it's almost certainly generated by the Folder stage, which has the inexplicable behaviour of trying to cache the entire contents of the folder in memory. Don't worry ab...
by ray.wurlod
Wed Dec 07, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HFC.exe -> need it but don't have the Datastage CD
Replies: 20
Views: 5916

That's the only official place it resides. Maybe someone would be good enough to post it in a downloadable area (such as ADN). I don't have access to a DataStage CD at the moment.
by ray.wurlod
Wed Dec 07, 2005 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of data type from Char to Date in PX
Replies: 4
Views: 1001

Welcome aboard. :D

When you're building the expression, use the graphical expression editor. There you will find the appropriate data type conversion function.

You may find that it is more efficient to use a Modify stage if this is all the transformation that you need to do.
by ray.wurlod
Wed Dec 07, 2005 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob error in AIX 5.3
Replies: 5
Views: 2427

What about libvmdsapi.so ?

You copied vmdsapi.so - that is not the same name.
by ray.wurlod
Wed Dec 07, 2005 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: buffer(1),85: Fatal Error: waitForWriteSignal():
Replies: 6
Views: 4888

The solution, in purely economic terms (supply and demand) is clear!
by ray.wurlod
Wed Dec 07, 2005 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can ICONV be used in EE
Replies: 2
Views: 872

Iconv() is a BASIC function - you could use a BASIC Transformer stage but there is a performance penalty. Otherwise there are data type conversion functions available, which you can find in the expression editor (Transformer stage) or in on-line help for Modify stage or Transformer stage. You can al...
by ray.wurlod
Wed Dec 07, 2005 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updating old record in SCD2
Replies: 1
Views: 762

Getting the key should have been done upstream of the Change Capture stage via a lookup against a "business key to surrogate key" data set.

Varying the delete flag or end date then becomes a straightforward update.
by ray.wurlod
Wed Dec 07, 2005 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Factors affecting startup time?
Replies: 1
Views: 719

The obvious one is getting the section leader processes started and talking to the conductor processes. There are many potential variables here especially on a cluster of machines. Connecting to database servers from multiple player processes also can take a lot of time. It's not just connection, it...
by ray.wurlod
Wed Dec 07, 2005 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job's are Aborting
Replies: 1
Views: 1344

Hundreds of jobs simultaneously? Possibly your server is overloaded.

Search the forum for the meanings of these signals.
by ray.wurlod
Wed Dec 07, 2005 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSPIPE_WAIT Writer timed out
Replies: 3
Views: 1689

Is this a remote file or an explicit named pipe? The message informs you that the job times out waiting for a reader to connect. Is your system heavily loaded, or have you run out of processes in the process pool?
by ray.wurlod
Wed Dec 07, 2005 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with DB2/UDB API stage
Replies: 23
Views: 10347

Well done, you solved it while I slept.

You can only avoid the warning by satisfying the condition about which it complains. You can easily create a message handler, however; just right click on the warning and define a message handler to demote the message to Informational.