Search found 53125 matches

by ray.wurlod
Fri Nov 17, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: syntax error while using DateTimeDiff() in Derivation
Replies: 4
Views: 1093

Please post the source code if DateTimeDiff(). It is not a function provided with DataStage. Data types are irrelevant in DataStage BASIC.
by ray.wurlod
Fri Nov 17, 2006 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while conneting to sybase
Replies: 4
Views: 2581

Welcome aboard. :D

Read the error message.
It is not a DataStage problem.
Your Sybase connectivity has not been configured.
by ray.wurlod
Fri Nov 17, 2006 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XFM last row
Replies: 1
Views: 748

Welcome aboard. :D

Use an Aggregator stage with Last as its aggregate function following the Transformer stage.
by ray.wurlod
Fri Nov 17, 2006 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogating key column
Replies: 1
Views: 728

Welcome aboard. :D

Curiously you are not the first to have asked this question. Search here can mean that you find the answer without having to ask!

Try Surrogate Key Generator for your initial exact match search.
by ray.wurlod
Fri Nov 17, 2006 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variables
Replies: 6
Views: 1355

Correct. You can use PreviousJob.$UserStatus if you chose to store the result in the job's user status area.
by ray.wurlod
Fri Nov 17, 2006 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

Sign up. My previous post explained where the dfloat comes from. We need the funding to help to support the site - none of the premium posters is paid - it all goes to purchasing bandwidth and administration of the website.
by ray.wurlod
Fri Nov 17, 2006 11:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Hangs
Replies: 5
Views: 1333

Add a Routine activity at the end. Use UtilityMessageToLog() to log a message. See whether the job sequence gets that far.
by ray.wurlod
Fri Nov 17, 2006 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Intermittent ORA-12545 through sequencer
Replies: 4
Views: 2275

Review the job logs of the jobs that failed. The first logged event ("job starting") shows the parameter values that the job received. Check that these are correct. If not, you need to discover why not. If they are correct you need to review the job designs themselves to ensure that the parameter re...
by ray.wurlod
Fri Nov 17, 2006 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variables
Replies: 6
Views: 1355

If you must do it in a parallel job, prefer to use a Surrogate Key Generator stage. The initial value can be picked up be a previous (server?) job and passed into the main job as a job parameter value.
by ray.wurlod
Fri Nov 17, 2006 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing data from oracle table in to sybase table
Replies: 11
Views: 3324

Then you're not driving it properly. It requires sorted input.
by ray.wurlod
Fri Nov 17, 2006 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

Aggreagator calculated columns are delivered as dfloat.

There is a "Decimal Output" property that you can deploy to manage them as decimal. This is available for the output link as a whole (as Default to Decimal Output), or for individual fields (as Decimal Output).
by ray.wurlod
Fri Nov 17, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Template of job control or Job sequence
Replies: 2
Views: 922

A job sequence that manages several jobs simply contains several job activities. With or without dependencies. These, in turn, can invoke regular jobs or job sequences. Try to keep your hierarchy from being too deep, or your maintenance people will find it difficult to understand the model.
by ray.wurlod
Fri Nov 17, 2006 7:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterpise Stage Warnings
Replies: 8
Views: 2042

Use a Message Handler to demote this warning to informational. It's basically warning you that some loss of precision in the least significant digits can occur because the floating point number being delivered is being converted to a decimal data type with a limited number of decimal places (compare...
by ray.wurlod
Fri Nov 17, 2006 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch v/s filter stage
Replies: 8
Views: 3143

You might also consider using a parallel Transformer stage if you are using version 7.5.1 or later. That way your constraint expressions may be easier to construct.