Search found 53125 matches

by ray.wurlod
Wed Jun 25, 2008 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Routine as a parameter in the user defined SQL
Replies: 1
Views: 870

Execute each routine via a Routine activity in a job sequence and use the activity variable $ReturnValue from each to supply the value to the job parameters.

Code: Select all

Routine1 ----->  Routine2 ----->  Job
by ray.wurlod
Wed Jun 25, 2008 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do i compare ??
Replies: 12
Views: 2316

Exactly as I posted earlier. Use stage variables for check for "changed" (Col1 and Col2) and "larger" (Col3) in data sorted by Col1, Col2 and Col3.
Derive your output columns accordingly.
by ray.wurlod
Wed Jun 25, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to know the job is being called in which sequence?
Replies: 4
Views: 1061

Open the job sequence. Open its job properties. Go to the Dependencies tab. All the jobs used in the job sequence should be listed there. As to which ones are actually being called, based on the logic in the job sequence, the only place from which you can obtain this information is the log of the jo...
by ray.wurlod
Wed Jun 25, 2008 1:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Masking in Parallel
Replies: 2
Views: 974

There's nothing out of the box as a function in parallel jobs; instead there are three specific stage types for comparing rows to determine whether two rows are different (changed). Try not thinking like a server job developer. Otherwise you can write your own version of the CRC32() function in C++.
by ray.wurlod
Wed Jun 25, 2008 1:15 am
Forum: General
Topic: Estimation templare required
Replies: 5
Views: 2423

Once you have upgraded to version 8 you will have a resource estimation tool at your fingertips. The main things that you need to estimate on the technical side are to do with resource consumption: CPU, memory, disk space and so on. I suspect you are not looking for this at all, but rather how to es...
by ray.wurlod
Tue Jun 24, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Saving table definition
Replies: 1
Views: 628

You use the two fields Data Source Type and Data Source Name as the two components of the Category name in a table definition.

(This changes in version 8.)
by ray.wurlod
Tue Jun 24, 2008 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DBA moved db2, now stages are gone/broken
Replies: 2
Views: 972

I don't think there's a quick fix - you'll have to settle for revenge.
by ray.wurlod
Tue Jun 24, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Obtaining Last Non-Null Value Per Column
Replies: 6
Views: 1836

Transformer stage with a complex set of If..Then..Else tests.

Database query (if available) using COALESCE function.
by ray.wurlod
Tue Jun 24, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: segmentation fault
Replies: 6
Views: 1523

NLS_LANG is an environment variable used for database (e.g. Oracle). Although DataStage does not use it, DataStage checks that it is set.
by ray.wurlod
Tue Jun 24, 2008 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upsert Between Two Oracle Tables
Replies: 4
Views: 1236

Not me. Have you tried to determine any pattern to the behaviour? Are any warnings logged? Your description is a little too broad to afford effective diagnosis.
by ray.wurlod
Tue Jun 24, 2008 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting warning while cahr to date conversion
Replies: 1
Views: 1087

We do not diagnose messages from APT_CombinedOperatorController.

Disable operator combination to learn which stage (operator) is generating the message. This may shed some light on what is happening.
by ray.wurlod
Tue Jun 24, 2008 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mathematical Function FABS return value
Replies: 2
Views: 1466

What is the data type of the source column?
by ray.wurlod
Tue Jun 24, 2008 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: case statement in db2 api or conditional statement
Replies: 2
Views: 926

That's true, but the question was about "change the query".
by ray.wurlod
Tue Jun 24, 2008 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: agregation
Replies: 2
Views: 890

If the grouping columns are indexed that is another argument for performing the summary in the database; it can leverage the indexes to establish the groupings.
by ray.wurlod
Tue Jun 24, 2008 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ASCII Nulls in Sequential File
Replies: 3
Views: 1230

Change the value of APT_STRING_PADCHAR to something other than 0x00.