Search found 53125 matches

by ray.wurlod
Wed Mar 21, 2007 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we increment the surrogate key value?
Replies: 2
Views: 801

Re: How can we increment the surrogate key value?

How can we increment the surrogate key value for every insert in to target database? By adding one to the previous value, which you initialize from the target table. Or by using a sequence in the database. There are key management routines in the SDK, but no way to initialize these out of the box -...
by ray.wurlod
Wed Mar 21, 2007 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run-time error 438 when saving new routines
Replies: 3
Views: 1036

Do you have the XP sp2 patch for DataStage installed on these clients?
by ray.wurlod
Wed Mar 21, 2007 5:59 am
Forum: General
Topic: DataStage 8.0
Replies: 5
Views: 1793

There is a 7.5 version of QualityStage, so you definitely would not get version 6. Version 7.5 can be called from DataStage 8.0, but only via the plug-in stage in server jobs; you can not use the new DataStage/QualityStage Designer to design version 7.5 QualityStage jobs, nor benefit from the "autom...
by ray.wurlod
Wed Mar 21, 2007 5:55 am
Forum: General
Topic: Merging Records
Replies: 30
Views: 8622

OUTER join. It will work.
by ray.wurlod
Wed Mar 21, 2007 5:54 am
Forum:
Topic: log error
Replies: 2
Views: 1615

Why did you post this in the MetaData forum? :?

It means that you have not imported the routines - in this specific case the before/after subroutine InitialHashCreation - that the job calls when you imported the job.
by ray.wurlod
Tue Mar 20, 2007 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage- DaysSinceFromDate syntax
Replies: 13
Views: 8637

Given the original request
venkat_kp wrote:What is the correct syntax for the modify stage.
I do not believe the OP was looking for the Transformer stage function.
by ray.wurlod
Tue Mar 20, 2007 10:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Segmentation fault (core dumped)
Replies: 4
Views: 3386

That is easy. In Designer, instead of doing a regular compile, choose Force Compile from the File menu. It forces re-doing of the Transformer stage: generation of C++ source, plus compiling and linking thereof.
by ray.wurlod
Tue Mar 20, 2007 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to MS Access DB from DataStage
Replies: 7
Views: 3226

There are no such things as drivers from Microsoft that run on UNIX. That was my original point.
by ray.wurlod
Tue Mar 20, 2007 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV Decimal conversion
Replies: 9
Views: 3673

True, but the same restrictions apply. The function generating the error is BCI.Put - doesn't that ring any alarm bells?
by ray.wurlod
Tue Mar 20, 2007 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mandatory field rejection for Fixed width file
Replies: 3
Views: 840

Use a Filter command to bring in only the good rows. Use a second Sequential File stage with the logically inverse filter to capture the bad rows and deal with them separately. The Sequential File stage reject link won't help you in general, though it may for specific cases; it captures rows that do...
by ray.wurlod
Tue Mar 20, 2007 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: export XML on UNIX cmd-line ?
Replies: 3
Views: 1127

... and not possible on the UNIX command line in any case.
by ray.wurlod
Tue Mar 20, 2007 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage
Replies: 5
Views: 1127

I understand that the ODBC stage supports only sequential mode for SELECT, but can execute in parallel for Upsert. It fakes this by establishing multiple connections. Ask yourself what would be the advantage of parallel select if there's only one table (non-partitioned). If it's any consolation, the...
by ray.wurlod
Tue Mar 20, 2007 6:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Blank "Timestamp" field shows *****
Replies: 9
Views: 1728

Blank is not a valid timestamp, therefore you can not insert it in a timestamp field. If you are writing to a text file, you can replace NULL with a Null Field Value, but blank is not the same as NULL; you might need to convert blank to NULL in an upstream stage. If the text file is fixed width form...
by ray.wurlod
Tue Mar 20, 2007 6:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage- DaysSinceFromDate syntax
Replies: 13
Views: 8637

In Modify stage functions can take only one argument.

In days_since_from_date() the source date must be a constant. It can not be an input column.
by ray.wurlod
Tue Mar 20, 2007 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Runtime Column propagation
Replies: 2
Views: 954

If you want to do transformations, you must supply the metadata for the columns involved, on both the input and output links. RCP only looks after the pass-through columns. (And destroys your ability to perform a meaningful lineage analysis.)