Search found 42189 matches

by chulett
Mon Apr 09, 2007 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage vs COBOL
Replies: 12
Views: 5590

Agreed. Use DataStage 390 when you have no COBOL programming resources available, that's where the advantage lies. Amazing... COBOL was a 'dead' language way back when I was doing it in the 80's. The main processing systems here are all 'COBOL over Oracle' behemoths. Make that more like UNdead! [grr...
by chulett
Mon Apr 09, 2007 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS
Replies: 4
Views: 2107

Part No. 00D-030DS751
December 2004

They must have rectified the oversight. And yes, the value doesn't matter. If it is 'set' the option is in effect.
by chulett
Mon Apr 09, 2007 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting error in compilation of a job where XML is used sour
Replies: 4
Views: 915

Yes, the Folder Stage - that is the missing 'required input stream' the compiler is complaining about. Have you read the XML PACK Designer Guide pdf that you have? There is a section there called 'Adding an XML Input Stage to Your Server Job' that might help. You should also find any post by kduke a...
by chulett
Mon Apr 09, 2007 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenate two fields in Transformer
Replies: 9
Views: 12979

A difference in what SQL Server selected versus what you are getting from Oracle. Sounds like you got an empty string before and now you are getting nulls. As noted, there is no magic bullet or easy answer here. You have to change all the jobs. You'll either need to change what gets selected using a...
by chulett
Mon Apr 09, 2007 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting error in compilation of a job where XML is used sour
Replies: 4
Views: 915

Job design? When you put your XML source into a database table, is that flattened or still as XML?

Typical job design would look like:

Folder -> XML Input -> Transformer -> DB

For the former (flattened data).
by chulett
Mon Apr 09, 2007 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Error
Replies: 5
Views: 1988

It's not a "weird error", it's an Access Violation. What did you find when you searched the forums here for that message?
by chulett
Mon Apr 09, 2007 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GETTING BETTER PERFORMANCE FOR ORACLE LOAD
Replies: 5
Views: 1478

Ken is challenging your "it's very bad performance" statement. I would have gotten there. :wink:
by chulett
Mon Apr 09, 2007 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer failing with NULL password error
Replies: 3
Views: 1246

You might want to check the parameter assignments in the Sequence job again. If you make the password parameters in the Sequence jobs - as a test - a String instead of Encrypted, does it work? I believe there were some bugs with encrypted passwords back in the 6.x days, you might want to contact you...
by chulett
Mon Apr 09, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer failing with NULL password error
Replies: 3
Views: 1246

When you run them outside of the Sequence job, do they run ok? That answer could help point out a general parameter issue or a Sequence setup issue.

Search the forum for 'null password given', see if any of the other posts on the subject help.
by chulett
Mon Apr 09, 2007 6:25 am
Forum: General
Topic: Adding enviornmental Variable
Replies: 18
Views: 5692

Have you built an routines yet? Used DSExecute to run a command? Pretty straight forward. Pass in the filename to be cat'd as an argument and the result back out the other end. Check this post for one example. There are others out there a search will turn up.

ps. He's no Brian.
by chulett
Mon Apr 09, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GETTING BETTER PERFORMANCE FOR ORACLE LOAD
Replies: 5
Views: 1478

"Didn't work" how? If you do a straight command line sqlldr direct path load from this file, how long does it take?
by chulett
Mon Apr 09, 2007 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Issue
Replies: 3
Views: 1007

It's not the SP2 patch that is the problem here. There is a specific 'Designer crashes while editing Sequence jobs' patch as well that you need to get. A search here should turn it up or ask your Support provider.
by chulett
Mon Apr 09, 2007 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS
Replies: 4
Views: 2107

They are listed exactly as Arnd notes in my 7.5.1A version of the document. There's a discrete section for 'Oracle Support' in the Environment Variables chapter. Does your manual not have a Chapter 6 with a section of Oracle variables in it? You seem to be quoting from it. I don't know why you'd hav...
by chulett
Mon Apr 09, 2007 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need infromation regarding some Fatal errors
Replies: 9
Views: 7725

Post some detail error messages so we can see what's behind the ellipses, the (...) part.
by chulett
Mon Apr 09, 2007 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling C program from DataStage Job
Replies: 16
Views: 6469

'Everything'? Then what does DataStage have to do with your question? Just run your C program from the command line. :?

Or just use one of the 'normal' mechanisms available for execution of any other command line object - DSExecute, ExecSH, Execute Command stage, etc etc.