Search found 42189 matches

by chulett
Tue Jun 28, 2011 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transfering Data to an Oracle Database
Replies: 2
Views: 1295

Better to check the actual NLS_DATE_FORMAT in play in the target database. Best to do your work "format agnostic" and stick with a standard format like YYYY-MM-DD HH24:MI:SS and leverage the TO_DATE() function in your target SQL. All IMHO, of course. :wink:
by chulett
Tue Jun 28, 2011 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not in or not between condition:
Replies: 11
Views: 4467

No, it was vague so you had to re-clarify. And that should have happened here.
by chulett
Tue Jun 28, 2011 10:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle CASE statement in Datastage
Replies: 23
Views: 16807

Again, what comes from the OConv is nothing that can be treated as a boolean. You'll need to explicitly check the output and then (if so desired) set the result to true/false.
by chulett
Tue Jun 28, 2011 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle CASE statement in Datastage
Replies: 23
Views: 16807

Pay closer attention to what Ray noted was the result of the OConv.
by chulett
Tue Jun 28, 2011 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle CASE statement in Datastage
Replies: 23
Views: 16807

Yes, that could be the derivation of a single stage variable that you would then reference in a constraint. For that, I would leave off the if-then-else and simply left the expression resolve to true or false and then leverage the variable as a boolean in the constraint.
by chulett
Tue Jun 28, 2011 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle CASE statement in Datastage
Replies: 23
Views: 16807

The syntax is almost identical to what you already have, you basically replace the "CASE WHEN" with "IF". You'll need to change the NVL and IN verbs to DataStage equivalents, of course. And disregard the 'nested' part in this case, you just need one big one if-then-else.
by chulett
Tue Jun 28, 2011 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generator questions
Replies: 41
Views: 8392

What "same" would that be? The stage works the way it works in your version, not much you can do about that.
by chulett
Tue Jun 28, 2011 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborted 'glibc detected' error
Replies: 11
Views: 8804

Post the entire, unedited error message or messages.
by chulett
Tue Jun 28, 2011 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle CASE statement in Datastage
Replies: 23
Views: 16807

In the meantime, you could always translate that into the same structure you would use anywhere a case statement is not supported - a large nested if-then-else construct.
by chulett
Tue Jun 28, 2011 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generator questions
Replies: 41
Views: 8392

Correct, the state file and/or support of a sequence object were added in the 8.x release from what I recall.
by chulett
Tue Jun 28, 2011 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -report command in v8.0.1
Replies: 5
Views: 2037

If you read the other replies here, you would see that was already suggested and reported as not having helped. :?
by chulett
Tue Jun 28, 2011 6:25 am
Forum: General
Topic: DS Server is running but showing Not Running.
Replies: 31
Views: 10931

Long story short, take all that evidence to your official support provider.
by chulett
Mon Jun 27, 2011 9:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generator questions
Replies: 41
Views: 8392

Since these are your questions, I split them out into your own thread rather than clutter up someone else's issue. And that way you can decide when your doubts have been resolved.

For the record, split from this post if you want to see the original context.
by chulett
Mon Jun 27, 2011 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple rows to single row
Replies: 15
Views: 5846

To source from a transformer, you need to do two things: 1) Define a stage variable. Note that I did not say "use" although you certainly could, it just needs to exist to allow the job to compile. 2) Set your output link constraint to let out only the number of records that you want, witho...
by chulett
Mon Jun 27, 2011 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple rows to single row
Replies: 15
Views: 5846

Moved this over to the Server forum. No, do not 'preload' the hashed file. You should have one input from the source and you should be doing a reference lookup and writing back to the same hashed file in a single transformer. You'll need to precreate the hashed file empty for this to work, use a tra...