Search found 42189 matches

by chulett
Thu Mar 13, 2014 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata connector error: offset 0 parsing parameter 0
Replies: 4
Views: 3735

Are you supplying any values to the stage that contain "special characters"? If not, please provide details as to how you have it configured in the job. I'd also be curious if this is the first attempt at using that stage in your environment or other jobs have used it successfully and just...
by chulett
Thu Mar 13, 2014 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Special Characters to Normal English Characters
Replies: 4
Views: 3219

Basically, a continuation of the conversation attempt started here that you haven't responded to.
by chulett
Thu Mar 13, 2014 7:24 am
Forum: General
Topic: TNS:listener could not resolve SID
Replies: 4
Views: 2878

It needs a client and the client leverages the tnsnames.ora file. And 'SID' in your case really means the TNS alias entry. From the thin client docs: B. Configuring an Oracle DSN The Oracle ODBC driver configuration has changed slightly with each newer version of the ODBC driver, but there are only ...
by chulett
Thu Mar 13, 2014 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No ORA messages in Datastage 8.5
Replies: 3
Views: 1635

I'm going to guess you're in need of a patch - are you up to date on fix packs? It could also be an issue with your specific 11g client version but you'd need to contact your support provider to see if that is true.
by chulett
Thu Mar 13, 2014 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Special Characters to Normal English Characters
Replies: 4
Views: 3219

Let's start by getting you in the proper forum, the FAQ Discussion forum is for something else entirely. Secondly, why do you think these are "special" characters and they need to be converted to "normal" characters? They're part of your customer's data and should be loaded intac...
by chulett
Wed Mar 12, 2014 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Grid Configuration File issues
Replies: 4
Views: 1891

You seem to be missing the closing } for 'node02'.
by chulett
Wed Mar 12, 2014 7:19 am
Forum: General
Topic: Left Outer Join More than One column?
Replies: 2
Views: 923

How can we say if it is 'correct' or not? Check the explain plan. Run it. Check the results. Then you'll know if it is correct or not. A join is still a join no matter if it is left, right, inner or outer, regardless of the number of columns you are joining and it will may need indexes on the join c...
by chulett
Wed Mar 12, 2014 7:10 am
Forum: General
Topic: TNS:listener could not resolve SID
Replies: 4
Views: 2878

Check with your DBA, that error just indicates a problem with your tnsnames.ora entry.
by chulett
Tue Mar 11, 2014 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage
Replies: 11
Views: 4655

Of course, just having some fun with your long standing aversion to jobs that purposefully abort themselves. :)
by chulett
Tue Mar 11, 2014 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: concat issue
Replies: 5
Views: 1937

Me, I would never trust anything like this to an implicit conversion... explicit all the way, please. That or look to see if you can use math to effect a solution so no conversion is needed.
by chulett
Tue Mar 11, 2014 2:08 pm
Forum: General
Topic: Datastage Project Size
Replies: 4
Views: 1680

That or tell us what "not happening" means in greater detail.

Also understand that if your export is in XML format that you'll need to WAIT for the importer to first convert the entire thing to a dsx before it can perform the import. Unless that's no longer the case?
by chulett
Tue Mar 11, 2014 2:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage
Replies: 11
Views: 4655

Ray's jobs don't abort. :wink:
by chulett
Tue Mar 11, 2014 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage
Replies: 11
Views: 4655

That's good to know... that was how we always handled things back in the day on the Server side - an All or Nothing load with a transaction size of zero. DBAs weren't always fond of it, however and from what I recall it wasn't supported initially on the Parallel canvas. You only had the two Oracle A...
by chulett
Tue Mar 11, 2014 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage
Replies: 11
Views: 4655

You'd have to test it to ensure you'd get the behaviour you are looking for. I'm afraid the Connector will still be issuing intermediate commits and thus your ROLLBACK would only be a small portion of the processed records. And the job may still abort...
by chulett
Tue Mar 11, 2014 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage
Replies: 11
Views: 4655

Your problem is going to be the fact that using the Oracle Connector, the job must abort to effect the rollback - and that only of any uncomitted records. If you want full / atomic level control over when commits and rollbacks happen, AFAIK you need to use ODBC. That stage allows you to issue specif...