Search found 42189 matches

by chulett
Wed Apr 30, 2014 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disable Link in runtime
Replies: 4
Views: 1927

Cannot be done in a single job.
by chulett
Wed Apr 30, 2014 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting UTF-8 characters into Oracle
Replies: 7
Views: 7236

Re: Inserting UTF-8 characters into Oracle

TonyInFrance wrote:I don't think screenshots are possible on this forum...so you aren't missing anything...
They are.

As in most forums, they are just [img] (Image) tags pointing to a file at a hosting site.
by chulett
Wed Apr 30, 2014 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column order changes after restarting DS Services
Replies: 7
Views: 3821

Re: Coloumn order changes after restarting DS Services

sreesuku2 wrote:I am sure, I had saved these jobs, compiled and executed before the services restart.
Me... not sure at all. There's no way for them to revert back to a state before your change unless you didn't actually save them.
by chulett
Tue Apr 29, 2014 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Before-SQL works only for DML ?
Replies: 11
Views: 3629

Or just pre-create the table before the first run. Not sure anything else makes sense. You don't want to setup something you have to remember to change after the first run. Or be dropping and rebuilding a table when (I imagine) a simple truncate would suffice. And unless I am mis-remembering, that &...
by chulett
Tue Apr 29, 2014 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 7
Views: 2406

Exactly... doesn't change the answer.
by chulett
Tue Apr 29, 2014 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Error in view data
Replies: 7
Views: 2778

Have you asked your DBA? Or your support provider? I've only seen mention of that error when hitting an 8i instance and typically that over a dblink, I'm guessing neither of those are the case here so it could be a bug in the stage or perhaps in the Oracle client.
by chulett
Tue Apr 29, 2014 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Error in view data
Replies: 7
Views: 2778

Exactly. Was hoping that would have been inferred from the first answer.
by chulett
Tue Apr 29, 2014 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Error in view data
Replies: 7
Views: 2778

Do you have a column defined named LOC_NEW?
by chulett
Mon Apr 28, 2014 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Oracle Wire Protocol driver Oracle Connection Dead
Replies: 9
Views: 4849

... and then "I'm feeling much better!". :wink:
by chulett
Mon Apr 28, 2014 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

Seems like a good thing to put in front of your official support provider for clarification.
by chulett
Mon Apr 28, 2014 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Oracle Wire Protocol driver Oracle Connection Dead
Replies: 9
Views: 4849

I'd also be curious if this was working and then stopped or are you are trying to get it to work for the first time?
by chulett
Mon Apr 28, 2014 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting Null Value in to Date Field - Oracle
Replies: 8
Views: 13870

It's still invalid syntax and is not "working correctly", nor is there a need to check lengths. Sorry but this is pretty basic stuff, did you check the documentation for the function? Using that StringToDate function inside IsValid is the problem as it is far too early. Check validity, the...
by chulett
Mon Apr 28, 2014 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Oracle Wire Protocol driver Oracle Connection Dead
Replies: 9
Views: 4849

Involve your DBA. I too would suspect a tnsnames.ora issue of some kind.
by chulett
Mon Apr 28, 2014 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

That 'best way' would be via the Row Count option in the stage. In case it's not obvious yet, I do not know why it is disabled when you have multiple links coming into the stage and couldn't find it documented anywhere. Not having access to DataStage means I've been hoping someone else will come alo...
by chulett
Sun Apr 27, 2014 8:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting Null Value in to Date Field - Oracle
Replies: 8
Views: 13870

ssnegi wrote:if IsValid('Date',StringToDate(DSLink.DT,"%yyyy-%mm-%dd"),"%yyyy-%mm-%dd") then DSLink.DT else SetNull()
Sorry but that's not valid "IsValid" syntax. You use it to test a string value before attempting to convert it.