Search found 42189 matches

by chulett
Sat Oct 02, 2010 9:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: highest surrogate key
Replies: 39
Views: 9018

You're wrong about the KeyMgmt routines. If you've used them exclusively to populate the target, there's no issue. If late to the game, just start it off high enough to avoid any existing keys.
by chulett
Sat Oct 02, 2010 6:18 pm
Forum: General
Topic: Connecting to virtual Datastage Client through Multi client
Replies: 7
Views: 2505

Best of luck, let us know how that turns out, good or bad please!
by chulett
Sat Oct 02, 2010 6:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: highest surrogate key
Replies: 39
Views: 9018

You need to capture the MAX() value outside the job and pass it in, then increment the job parameter for each record. That or use one of the 'KeyMgmt' routines that come with the tool.
by chulett
Sat Oct 02, 2010 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 7
Views: 6626

Since we just went through this recently with someone else, here's one I knew I could find. As noted, there are other examples out there.

viewtopic.php?t=136037
by chulett
Sat Oct 02, 2010 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 7
Views: 6626

It has been mentioned here quite a bit, so do an exact search for "vertical pivot" and troll through what comes up. Yes, you will find a lot of matches to posts with this exact same advice to search in them, keep on going and you'll (eventually) find the wheat amongst the chaff.
by chulett
Sat Oct 02, 2010 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert XML into Oracle CLOB datatype.
Replies: 6
Views: 4140

Perhaps Ernie will come along with a better idea. All I can think of at the moment is to read the XML file in using the External Source and XML Input stages to 'flatten' it and then in the same stream use an XML Output (or perhaps XML Transformer) to turn it right back into the same XML without any ...
by chulett
Sat Oct 02, 2010 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: configuration file
Replies: 2
Views: 1258

First thing to understand is that while "processor" is a physical concept, an actual discrete piece of hardware in your system, a "node" is nothing more than a logical concept and has no direct relationship with CPUs. Its just another process that your server needs to run and you...
by chulett
Fri Oct 01, 2010 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault type is 11 - Aggregator Stage Issue
Replies: 6
Views: 5056

Cool. Luckily for the rest of us, that LDR_CNTRL issue is specific to AIX from what I recall. :wink:
by chulett
Fri Oct 01, 2010 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure Stage
Replies: 3
Views: 2256

Did you set the Stored Procedure stage to "Transform" mode?
by chulett
Fri Oct 01, 2010 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: occurring problem
Replies: 13
Views: 4543

Me, I don't understand... hence I'm waiting for the OP to come back and clarify things. Again. :wink:
by chulett
Fri Oct 01, 2010 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: occurring problem
Replies: 13
Views: 4543

Sai, re-read cuckoo's last post. I edited it slightly for clarity and to emphasis the points they were trying to make.
by chulett
Fri Oct 01, 2010 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special Character should not get loaded into the Staging tab
Replies: 7
Views: 3146

One technique that gets mentioned here uses a pair of converts, like so: Convert(Convert('ABCDEFGHIJKLMNOPQRSTUVWXZY0123456789','',YourField),'',YourField) This would remove everything except numbers and upper-case letters. If you have the need, you could add the lower-case alphabet to the mix as we...
by chulett
Fri Oct 01, 2010 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special Character should not get loaded into the Staging tab
Replies: 7
Views: 3146

There's nothing "special" about any of those characters, that is why people are asking you to clarify - be specific - about what you mean by special, what exact list of characters you want to remove. Regardless, Convert() is the resolution, not any kind of a 'workaround'. If you still need...
by chulett
Fri Oct 01, 2010 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate key generator stage in datastage 8.1
Replies: 4
Views: 5143

I don't have any docs access right now... what other options are there for File Block Size besides 'system picked'? And there's nothing like a "cache" option?
by chulett
Fri Oct 01, 2010 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert XML into Oracle CLOB datatype.
Replies: 6
Views: 4140

You didn't answer the key question - is your source XML formatted? (AKA 'pretty printed') That will make this exercise more... difficult... if it is anything other than one big long record. And I suspect it is if you are reading it with the Sequential File stage.