Search found 42189 matches

by chulett
Sun Apr 15, 2007 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing NULL values
Replies: 6
Views: 1784

I'm going to go out on a limb here and suggest you store them as... null values. Is there any particular reason why you wouldn't want to do that? :?
by chulett
Sun Apr 15, 2007 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: spliting a string in one column into many rows
Replies: 5
Views: 1185

This is the FAQ post I mentioned, in case you hadn't found it yet.
by chulett
Sun Apr 15, 2007 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: spliting a string in one column into many rows
Replies: 5
Views: 1185

Up to you, it can be done in either place. In this case it isn't complex enough that it must be done in a routine, so suggest you stick within the transformer.
by chulett
Sun Apr 15, 2007 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertions
Replies: 21
Views: 17931

You really want to suggest they CAST the INVOICE_QUANTITY to a date? :wink:
by chulett
Sun Apr 15, 2007 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Job is getting aborted
Replies: 6
Views: 2729

Rather than giving us things 'like' your error message, it is always best to post the actual error from the logs. That being said, there's something in your returned parameter value that is not valid in a string. Without knowing exactly what you are doing, about all we can do is guess what might fix...
by chulett
Sun Apr 15, 2007 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: spliting a string in one column into many rows
Replies: 5
Views: 1185

This is answered in the FAQ forum. Basically all you need to do is replace the commas with the EOR characters for your O/S - in your case <CR><LF> pairs. Write out one record like that and it will read back in as many.

Use functions like Convert or EReplace along with CHAR(13):CHAR(10).
by chulett
Sat Apr 14, 2007 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of Columns in an o/p Link
Replies: 4
Views: 1157

Ah... if only that were true. :(

OCI doth not.
by chulett
Sat Apr 14, 2007 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of Columns in an o/p Link
Replies: 4
Views: 1157

Why are you counting them manually? They're numbered in the Transformer stage. :?
by chulett
Sat Apr 14, 2007 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error when Try to view data
Replies: 4
Views: 5047

:? So, did you get this working? It's marked as Resolved but doesn't seem like it is.

If you still need help, explain exactly what you are doing in the OCI stage - update action primarily but the more information the better.
by chulett
Sat Apr 14, 2007 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error when Try to view data
Replies: 4
Views: 5047

Oh, and please delete your duplicate post before someone replies to it.
by chulett
Sat Apr 14, 2007 11:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error when Try to view data
Replies: 4
Views: 5047

If you let the stage generate the SQL, you would never see this error. However, since people seem to just LOVE to stuff sql created in other tools like Toad into an OCI stage, things like this happen. One of the properties of the stage is TABLE NAME. It is a required property and right now has no va...
by chulett
Sat Apr 14, 2007 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error With Long Description containing EOR
Replies: 4
Views: 2067

There are carriage returns in your data. You need to decide - do you want to preserve them or remove them from the data? Load it as is or keep it looking all purty and multi-line like? Preserve? Changing things like fixed-width or delimited won't help. You need to let DataStage know that there are ...
by chulett
Sat Apr 14, 2007 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk load
Replies: 13
Views: 3483

Target SQL - Insert /*+ append*/ into <column name> from view There is nothing more to describe in job design Sure there is. Can we get a little more precise in our description of the target SQL, espcially seeing as how that's where the problem lies? You don't insert without selecting from somewher...
by chulett
Sat Apr 14, 2007 6:24 am
Forum: General
Topic: Handling special characters with Oracle OCI
Replies: 6
Views: 8003

I did - as noted, it is in my first reply in this thread. And as noted, two words there should appear different - blue - they are the link to the topic in question.

Or simply search for NLS_LANG and you'll find a plethora of topics.
by chulett
Sat Apr 14, 2007 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI 9i stage - problem with decimal column
Replies: 4
Views: 1502

We had a similar experience with the OCI stage in 7.5.2 - junk after certain column values. For us it wasn't timestamp or decimal fields, but just varchars substringed from a CLOB. And it only happened when using a 10g client to access our 10g instance. For us, reverting back to a 9i client solved t...