Search found 15603 matches

by ArndW
Mon Feb 13, 2006 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Look up multiple columns
Replies: 10
Views: 6260

Instead of using the CHAR(13) {which is <cr>}, use CHAR(10) {which is <lf>}.
by ArndW
Mon Feb 13, 2006 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uvconfig
Replies: 2
Views: 819

Most of the parameters in the uvconfig file don't need to be modified. The few that may be changed are covered in this forum. If you really wish to know more, download the IBM pdf document Administering UniVerse and look at chapter 4 for a description of the uvconfig file. Please note that not all t...
by ArndW
Mon Feb 13, 2006 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remote call command tool
Replies: 6
Views: 1545

Have you thought about using the MKS Toolkit or a similar set of utilities and implementing "rsh" and/or "ssh" to to this? If you are remaining in the Windows environment you can use the Microsoft built-in facilities for remote command execution as well. All of these commands can be executed in para...
by ArndW
Mon Feb 13, 2006 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX features for Cluster or Grid
Replies: 3
Views: 1983

I would suggest starting in the Parallel Job Developer's Guide, pages 58-9 onwards. This details the basic configuration setup required by PX to run on a distributed system configuration - as you've stated this is the way that a future true grid solution will work with PX jobs. Although this is not ...
by ArndW
Mon Feb 13, 2006 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remote call command tool
Replies: 6
Views: 1545

Erik, What sort of a tool are you looking for - one that works under Windows in a similar way to the UNIX "rsh"? You can call OS commands from DataStage, so almost any command you can call from a command window can also be called from DataStage and return both an error code and all of the screen out...
by ArndW
Mon Feb 13, 2006 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS7.5 Server installation issue
Replies: 3
Views: 1222

It does seem to be something to do with NLS; were the jobs written with NLS enabled and/or is this new installation NLS-enabled?

A search of the forum revealed only one related post
by ArndW
Mon Feb 13, 2006 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restarting a job with the same parameters
Replies: 15
Views: 4792

No pitfalls unless you have encrypted values in there; I'm not sure that they will re-parse.
by ArndW
Mon Feb 13, 2006 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Player 11 terminated unexpectedly
Replies: 1
Views: 935

Hemant,

you will need to supply more information. Are all jobs aborting, all the time? Is it always player 11? What has changed between the time when youir jobs were running and now?
by ArndW
Sat Feb 11, 2006 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 8042

Kumar - I see what you mean; I went back and saw that the poster did use a constant text, not data. So it really ought to have worked, regardless of any NLS setting! :shock:
by ArndW
Sat Feb 11, 2006 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 8042

Kumar - I don't understand what your post means. The point of my question was to make sure that the string contains a "0" character as we expect it - namely one which has ascii value of 48. If the string contains another glyph then then you would need to change the TRIM function to remove that. All ...
by ArndW
Sat Feb 11, 2006 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating values into a column which datatye is timestamp
Replies: 2
Views: 820

AnjinReddy,

you posted the question in a PX forum, but specified Windows/Server in the comments. Could you specify which system you are actually using, and what your error message is?
by ArndW
Fri Feb 10, 2006 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validations
Replies: 6
Views: 1581

Hello Sri, A NULL and an empty string are different values. Are you saying that ISNULL() and ISNOTNULL() have a bug or that they aren't working the way you expect them to? If you are reading the values from a csv file as you showed, you will be getting empty fields and not NULL values, so your ISNUL...
by ArndW
Fri Feb 10, 2006 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 8042

Yep - thanks for the correction.
by ArndW
Fri Feb 10, 2006 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Availabality of CRC32 in PX
Replies: 8
Views: 2099

<sarcasm=on> Ray, the google search of "crc32 c++ function" returned over 81,000 pages to me. I think that is too much. Could you help me and Somaraju out? Please write (and of course debug) the parallel routine and post it here for us? <sarcasm=off> Somaraju, the CRC32 algorithm is not only availab...
by ArndW
Fri Feb 10, 2006 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validations
Replies: 6
Views: 1581

Sri, let's take the problems you are having one at a time, that way it might turn out that you don't have that many issues but just one or two. NULL and ISNOTNULL work. Always. Accept that as a given and you can start analyzing your data. If a string of length 0 comes from the FTP (or sequential or ...