Search found 42189 matches

by chulett
Tue Jul 01, 2008 10:00 pm
Forum: Site/Forum
Topic: FILES !!!
Replies: 3
Views: 2298

LOL!!!
by chulett
Tue Jul 01, 2008 9:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log report
Replies: 5
Views: 1152

It is frowned upon to string unrelated questions together. Please don't make it a habit. I'm sure there's an "expansion" for "RT" & "BP" but you'd need one of the Grognards to chime in, someone who'd been in on the development of the product. I'd just be guessing. To me, all that really matters ...
by chulett
Tue Jul 01, 2008 9:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log report
Replies: 5
Views: 1152

Whatever you 'clear' from the log is gone, so no. :(
by chulett
Tue Jul 01, 2008 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Previous row value
Replies: 14
Views: 2597

No laughing here, just a learning opportunity. Sometimes it's hard to tell if something is wrong or right when someone says "I have something like this" in a job, your first inkling is to give them the benefit of the doubt and assume they've really got it correct. However, if we dig deeper and thing...
by chulett
Tue Jul 01, 2008 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Previous row value
Replies: 14
Views: 2597

But then I have a simple statement like if PreviousValue <> CurrentValue then myCounter = myCounter +1 else myCounter How 'like' that is it? Your syntax as posted is invalid if that's literally what you have in the derivation. It should be: if PreviousValue <> CurrentValue then myCounter+1 else myC...
by chulett
Tue Jul 01, 2008 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling in Director
Replies: 1
Views: 775

Add to Schedule over and over, at 30 minute intervals... and hope it never takes more than 30 minutes to run.
by chulett
Tue Jul 01, 2008 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clean up resources
Replies: 2
Views: 1936

The DS.TOOLS menu. Search the forums for discussions on its use.
by chulett
Tue Jul 01, 2008 12:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Approach required for this Pivoting example.
Replies: 7
Views: 1945

:D He wasn't offering to build one for you, just stating his preference as to the approach to take to solve this.
by chulett
Tue Jul 01, 2008 12:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Previous row value
Replies: 14
Views: 2597

Set it to something you know won't ever match on the first comparison, say "?" for example. None means null so your <> check always fails.
by chulett
Tue Jul 01, 2008 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Previous row value
Replies: 14
Views: 2597

What do you have for the Initial Value of the counter and previousvalue stage variables? Hopefully something valid for the datatype and not just null/empty.
by chulett
Tue Jul 01, 2008 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine activity
Replies: 3
Views: 1681

Search again, this had been discussed a bajillion... well, a lot.

Try searching for a significant portion of your message that doesn't include anything specific to you, like "Controller problem: Unhandled failure" - that should turn up quite a number of conversations.
by chulett
Tue Jul 01, 2008 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Previous row value
Replies: 14
Views: 2597

Re: Previous row value

But my previous and current columns are identifical when i view them in the next stage Of course, because your last stage variable derivation makes them the same and rightly so: currentvalue ----------------------------------> previousvalue Nothing looks obviously wrong to me, what output are you a...
by chulett
Tue Jul 01, 2008 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of DataStage server 7.5.2
Replies: 12
Views: 6410

Is this actually what's in your dsenv file? :?

RACLE_HOME=/home/oracle/ora9204; export ORACLE_HOME

ORACLE without the 'O'?
by chulett
Tue Jul 01, 2008 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB migration from Oracle 9 to Oracle 11
Replies: 7
Views: 1744

Not sure, you'd need to either ask Support or just try it when you can and let us know. :wink:
by chulett
Tue Jul 01, 2008 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Lookup
Replies: 3
Views: 1467

Typically this happens when you think they are identical when in fact they are not. You need to triple-check, very carefully. They would need to match exactly: case, length, character for character - the whole nine yards. Length isn't enforced in Server until it hits a database, so just because you'...