Search found 53125 matches

by ray.wurlod
Tue Nov 10, 2009 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating DB2 server timestamp through Userdefined SQL
Replies: 3
Views: 2766

This is not a problem with the timestamp unless UPDATE_TIMESTAMP has a string data type. Please verify that. Otherwise, it is one of your Char or VarChar fields that is throwing this error. (The error message specifies "string data right truncation".)
by ray.wurlod
Tue Nov 10, 2009 1:17 pm
Forum: General
Topic: Sequential File dropping records without any warning
Replies: 8
Views: 2764

Add a reject link to the Sequential File stage and report back whether the row counts reconcile with this design. If they do, then you will need to perform some of your own detective work to figure out why the rejected rows do not match the record schema you have given in the Sequential File stage.
by ray.wurlod
Tue Nov 10, 2009 1:15 pm
Forum: General
Topic: Job cannot be deleted
Replies: 8
Views: 2766

I believe your major concern is identifying the culprit who is deleting your local repository hashed files. It's good that you can recover them but you ought not to need to do so.
by ray.wurlod
Tue Nov 10, 2009 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Binary to Decimal in PX 8.0.1
Replies: 6
Views: 1896

What size decimal?

There is information in the manuals about how decimal numbers are stored, but the number of bytes depends on both the precision and the scale.
by ray.wurlod
Mon Nov 09, 2009 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup on dataset
Replies: 2
Views: 825

How many records on the stream input? How many records on the reference input? How many records on the output of the Lookup stage?
by ray.wurlod
Mon Nov 09, 2009 8:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove string
Replies: 15
Views: 4700

There's an easy solution for either server or parallel jobs involving a mix of Left(), Index() and Right() functions - you can pass the string that is to be removed as a job parameter.
by ray.wurlod
Mon Nov 09, 2009 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove string
Replies: 15
Views: 4700

Moderator: please move to parallel forum
by ray.wurlod
Mon Nov 09, 2009 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pager configuration
Replies: 1
Views: 1047

Use a freeware email client such as blat to send mail. Configure your email gateway with the ability to translate short emails into pager messages.
by ray.wurlod
Mon Nov 09, 2009 8:00 pm
Forum: General
Topic: Routine - Nested if-else
Replies: 5
Views: 2407

Look in the DataStage BASIC manual for IF statement and CASE statement.
by ray.wurlod
Mon Nov 09, 2009 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Performance improvements tips
Replies: 13
Views: 5548

Quickest solution?

Double the number of nodes, increasing the hardware and licensing commensurately.
by ray.wurlod
Mon Nov 09, 2009 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Could not load module libgciudt6.so
Replies: 13
Views: 8066

And you have read and execute permissions to libgciudt6.so ? This error is really annoying, because the library contains functions used to access Unidata 6; an inability to load the library ought not to affect any job that does not access Unidata version 6. However, functions in this library are sta...
by ray.wurlod
Mon Nov 09, 2009 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS button in Administrator greyed out
Replies: 10
Views: 4549

Check the NLSMODE setting in the uvconfig file. If NLSMODE is 0 then NLS is not available.
by ray.wurlod
Mon Nov 09, 2009 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Whitespace added after every value
Replies: 14
Views: 3303

pandujoy wrote:plz help me out
Who, what or where is "plz"?
:?
by ray.wurlod
Mon Nov 09, 2009 12:04 pm
Forum: General
Topic: Routine - Round() function
Replies: 4
Views: 3331

In server routines rounding can be performed using "MD" conversions in Oconv() and when using the Fmt() function. You will find more information about these in the DataStage BASIC manual.
by ray.wurlod
Mon Nov 09, 2009 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert mmddyy date format to yyyy-mm-dd
Replies: 6
Views: 3597

No it won't. It will convert the string to a binary date. That's only half way to the required solution. You're also making an assumption about the century pivot year.