Search found 53125 matches

by ray.wurlod
Thu Sep 01, 2005 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel job issue
Replies: 6
Views: 1370

Is there an entry for <pit_mms> in the uvodbc.config file in your project directory?
by ray.wurlod
Thu Sep 01, 2005 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terdata to DB2 lookup
Replies: 5
Views: 1027

Then option 3 is not for you. Try option 2.

Seems to me that a table with no unique columns is a strange choice for a lookup table.
by ray.wurlod
Thu Sep 01, 2005 5:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit size using ODBC Stage
Replies: 3
Views: 921

The value 0, of course, means that all rows are part of a single transaction. You need to ensure that your Oracle rollback segment is large enough to accommodate this.
by ray.wurlod
Thu Sep 01, 2005 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv and Oconv
Replies: 4
Views: 2167

Iconv() is an exceptionally clever function. For dates all it needs is the day month year ordering (and not even that if the date is ordered correctly for your locale).

Therefore an elegant solution is

Code: Select all

Iconv(EndDate, "DYMD") - Iconv(StartDate, "DYMD")
by ray.wurlod
Thu Sep 01, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Only part of a job runs???
Replies: 5
Views: 1135

Not enough information.

We need more about the ODBC stages. Same data source? Same table? What are the transaction control settings? What is the update rule? Is it possible that the same key values might be found in both sources?
by ray.wurlod
Thu Sep 01, 2005 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash key lookup with an EXTRA key ...
Replies: 5
Views: 1135

No.

Only entire key lookup is possible using a Hashed File stage.
by ray.wurlod
Thu Sep 01, 2005 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines
Replies: 6
Views: 1296

"Too many" is not quantifiable; it depends on the complexity of processing and the size of the argument(s).
by ray.wurlod
Thu Sep 01, 2005 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines
Replies: 6
Views: 1296

Warning

Too many levels of recursion will cause a memory error.
by ray.wurlod
Thu Sep 01, 2005 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatatination of 3 files
Replies: 9
Views: 2196

Don't run the command cat a b c > d as a filter. Instead, run it as a before-stage subroutine.

As Craig, said, filters don't work that way. If you want to use a filter, the command would be cat a b c and DataStage would use stdout from the cat command as its source of rows.
by ray.wurlod
Thu Sep 01, 2005 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COMPILATION ERROR
Replies: 3
Views: 1300

Also show us the schema, so that we can determine whether END_DT really is a subrecord or tagged record type.
by ray.wurlod
Thu Sep 01, 2005 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage - Update / Insert rowcount
Replies: 5
Views: 2150

DSLinkRowCount on the link servicing the database reports how many rows were sent successfully along that link.

You also need to capture whether any rows were not accepted by the database - standard reject handling in DataStage - by counting the number of rows on the reject link.
by ray.wurlod
Thu Sep 01, 2005 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Differences between Server and Parallel Extender
Replies: 2
Views: 1559

It depends. Given that one of your criteria is to use all the partitioning and parallelism available in server jobs, I'd be happy to assert that a highly competent server job developer could create a set of jobs that would finish more quickly than a set of parallel jobs created by a less competent d...
by ray.wurlod
Thu Sep 01, 2005 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning - "Sequential file cannot preserve partion"
Replies: 9
Views: 4727

Create an explicit message handler if this warning concerns you.
by ray.wurlod
Wed Aug 31, 2005 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing a message from a transform into job log
Replies: 6
Views: 2084

Create a Routine that returns its input argument but logs a message if that value is zero. FUNCTION WarnIfZero(Arg1) If Unassigned(Arg1) Or IsNull(Arg1) Then Ans = @NULL End Else If Arg11 = 0 Then Call DSLogWarn("Zero value encountered in transformation.", "...
by ray.wurlod
Wed Aug 31, 2005 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terdata to DB2 lookup
Replies: 5
Views: 1027

Because you are performing a lookup against a partial key or secondary key, it is possible that more than one row might be returned. The DB2 stage is not equipped to return multiple rows on a reference lookup, so generates the message. You have three choices. Use an ODBC stage, which does have multi...