Search found 42189 matches

by chulett
Mon May 14, 2007 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-printable Control Characters
Replies: 13
Views: 10817

So, would you mind sharing with us what control characters you found and your final Convert statement? That and mark the topic as 'Resolved'. Both would help future searches with a similar problem.

Thanks.
by chulett
Mon May 14, 2007 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling user-defined Oracle function
Replies: 4
Views: 963

You 'call' an Oracle function in DataStage the same way you would in normal SQL - just select it as part of your query. The stage can generate it for you if you put the function (etc) in the Derivation for the column.
by chulett
Mon May 14, 2007 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Edit DDL
Replies: 6
Views: 1198

That's because you are using mixed case and it is trying to preserve it. Just type the tablename in all UPPER CASE, you'll avoid all kinds of problems mixed-case tables names bring in Oracle.
by chulett
Mon May 14, 2007 12:28 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 12719

No, wildcards in the Filter option of the Server Sequential File stage.
by chulett
Mon May 14, 2007 11:45 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 12719

There's no such thing as a 'script' written in C. You're probably seeing example C code from the dsjob application itself or how some of the functions themselves are implemented in it. There are no script examples in the Guide from what I recall, but descriptions of all of the functions available as...
by chulett
Mon May 14, 2007 10:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job sequence restartable launched by dsjob -run
Replies: 1
Views: 969

Your problem is the fact that the job is Stopped and not Aborted. To me this is a bug in DataStage and something you should query IBM Support regarding, but the '/Restartable' part in this case is simply not true. As you are finding, it must be reset before it can be run again and you lose the check...
by chulett
Mon May 14, 2007 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: table usage analysis
Replies: 4
Views: 964

I pull a single .dsx file with source from an entire project and load that. Simplest that way.
by chulett
Mon May 14, 2007 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: table usage analysis
Replies: 4
Views: 964

Doing the table metadata after the fact is too late.

For Chuck's utility, I load the output into a database table. Then you can simply query the field that contains your table (FILETABLENAME?) with a case insensitive wildcard match.
by chulett
Mon May 14, 2007 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incompatibility between DataStage and IBM DB2 64 bit
Replies: 11
Views: 2896

DataStage is a 32bit application on most platforms. I doubt you'll find they are truly incompatible, but instead you must use the 32bit libraries to access it rather than the 64bit ones. You do this by ensuring the proper libraries are listed first in the appropriate 'library path' environment varia...
by chulett
Mon May 14, 2007 8:15 am
Forum: General
Topic: u
Replies: 4
Views: 1385

Why in the world butcher your original post like that, or change the subject from 'awk' to 'u'? There really was no need for that. It's fine to come here with questions like yours about what awk is, just don't expect long involved answers when the subject isn't specific to DataStage. Best to link yo...
by chulett
Mon May 14, 2007 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pros/cons XML
Replies: 8
Views: 2624

The pros and cons of XML? Sounds like a Roger Waters album. :wink:

I've never pondered it, really. All things have limits but I've only ended up using XML when required to, not because I had a choice in the matter.
by chulett
Mon May 14, 2007 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage MQ
Replies: 2
Views: 1274

Google. Found this old Ascential Whitepaper which mentions MQ Series integration as one example of what can be had out there.
by chulett
Mon May 14, 2007 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Code Handling
Replies: 2
Views: 826

:? You need to do a better job of explaining what you are trying to do and what you are expecting. Examples are always good.
by chulett
Mon May 14, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Port to be opened on Linux server to connect to DataStage
Replies: 3
Views: 1002

You also need to verify the connection daemon is up and running:

Code: Select all

ps -ef |grep dsrpcd |grep -v grep

Should return one line.
by chulett
Mon May 14, 2007 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Port to be opened on Linux server to connect to DataStage
Replies: 3
Views: 1002

Why not just check '/etc/services'? The default port for DataStage is 31538 but I'd suggest you verify there.