Search found 53125 matches

by ray.wurlod
Wed Apr 15, 2009 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Negative Number representation needs to be modified
Replies: 11
Views: 4567

Way too complex! Iconv(inLink.TheValue, "MD2-") will handle the trailing sign.
by ray.wurlod
Wed Apr 15, 2009 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault type 11 - Abnormal Termination
Replies: 7
Views: 8566

Abnormal terminations can even be caused by simple things, like the connection name not being in tnsnames.ora. That's why we need to know more about the job design.
by ray.wurlod
Wed Apr 15, 2009 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove comma from numeric field
Replies: 6
Views: 7429

Ereplace() is the least efficient of the three suggestions offered.
by ray.wurlod
Wed Apr 15, 2009 1:25 pm
Forum: General
Topic: NullToValue in Modify stage
Replies: 3
Views: 3531

There is an error in the Parallel Job Developer's Guide. The NullToValue() function is only applicable in the Transformer stage. For the Modify stage you require the handle_null() function.
by ray.wurlod
Wed Apr 15, 2009 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Dynamic Hash File
Replies: 10
Views: 5015

You might find the resolution to this post interesting.
by ray.wurlod
Wed Apr 15, 2009 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Peformance issue in parellel job while writing to DB2 stage.
Replies: 4
Views: 1541

Welcome aboard.

Are you selecting from the same DB2 table (either in the stream or the lookups) that you are trying to upsert into? You may be experiencing locking problems in the database. Have your friendly DBA monitor locks while the job is running.
by ray.wurlod
Wed Apr 15, 2009 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert String to Decimal in subroutine
Replies: 8
Views: 2311

You have to trim @FM rather than white space.
by ray.wurlod
Wed Apr 15, 2009 1:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS_MAP IS NOT NAOT VALID
Replies: 3
Views: 1992

Your job does not actually have a parameter whose name is NLS_MAP. Maybe it's cased differently or spelled differently. But the fact that the reference was unresolved in the error message suggests extremely strongly that, whatever job parameters you do have, none of them is called "NLS_MAP".
by ray.wurlod
Wed Apr 15, 2009 1:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault type 11 - Abnormal Termination
Replies: 7
Views: 8566

It's not line 190, it's address 0x190 in the object code. You need VLIST to determine which source statement this is. However, if you tell us what stage types are on the other ends of the links connected to the Transformer stage we can probably take an educated guess where the error is coming from. ...
by ray.wurlod
Tue Apr 14, 2009 11:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To add count and field name in the trailer of a seq file
Replies: 4
Views: 1336

I wonder whether that counts as Resolved... ?
:?
by ray.wurlod
Tue Apr 14, 2009 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to import table definitions- DB2
Replies: 2
Views: 1178

Is the server in this case a DB2 server or a DataStage server? If it's a DB2 server, check that the DB2 client software is properly configured for that server and that any necessary environment variables have their correct settings. If it's the DataStage server, check whether the repository needs re...
by ray.wurlod
Tue Apr 14, 2009 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: InfoSphere Installation aborting installing db2
Replies: 5
Views: 2886

Curious. Were you really root? The root user ought not to be affected by file system permissions. I wonder if the install script starts other processes under different IDs to do things. We ought to begin pressuring IBM for better documentation of these kinds of issues - you're placing your total tru...
by ray.wurlod
Tue Apr 14, 2009 11:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine
Replies: 8
Views: 2110

Yes, you could buy a premium membership and read the remainder of my reply.
by ray.wurlod
Tue Apr 14, 2009 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine
Replies: 8
Views: 2110

You can use drag and drop in the Designer client. I am not aware of any version 8 programmatic method for changing the repository folder in which a component resides. I suppose that you could enable server side tracing then open Designer and perform the drag and drop, investigate the subroutine call...
by ray.wurlod
Tue Apr 14, 2009 10:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To add count and field name in the trailer of a seq file
Replies: 4
Views: 1336

Welcome aboard. The count is the easy part. As a general rule a running job does not have access to its own metadata within the design. The easiest solution is probably to post-process the file. Are your column definitions in a schema file or in the Repository? In any case, you can create a server j...