Search found 53125 matches

by ray.wurlod
Mon Oct 09, 2006 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: special character in Oracle schema owner name
Replies: 5
Views: 1537

Welcome aboard. :D

Try surrounding the owner name in double quotes. For example "OPS$OWNER".TABLENAME
by ray.wurlod
Mon Oct 09, 2006 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sprecial character in the input column
Replies: 2
Views: 953

Are you sure this is a parallel job? There is no Ereplace() function available in parallel Transformer stage. If it's a server job or a BASIC Transformer stage you can use the LETTERS Transform (which is defined as Oconv(Arg1,"MCA")) - this preserves only alphabetic characters. However, if you have ...
by ray.wurlod
Mon Oct 09, 2006 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of a stage in every project ?
Replies: 7
Views: 1554

When you use the Package Installer it asks which project for installation. Select all projects. You can not add anything to the Template project; it's not a real project, it's only a template of a project. The reason you can't add things there (unless re-installing the server) is that it does not ha...
by ray.wurlod
Mon Oct 09, 2006 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records with duplicate key values to be loaded into the hash
Replies: 11
Views: 4433

The only way is to use a UV stage, and declare the actual value (not the ROWID value) as Key in your metadata. This will be terribly slow since it's a non-key-based lookup. You can improve performance by creating an index on the hashed file. Search the forum for CREATE.INDEX command.
by ray.wurlod
Mon Oct 09, 2006 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limit to I-Descriptors you import?
Replies: 4
Views: 1574

Hegemon wrote:One of the UV files literally has over 10K I-Descriptors defined.


(Staying with the Scottish theme - actually Nac Mac Feegle) Crivens!!
by ray.wurlod
Mon Oct 09, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Target have DRS stages data is not loading.
Replies: 14
Views: 2607

What database type do you specify in the Dynamic RDBMS stage?
by ray.wurlod
Mon Oct 09, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup failing gives wrong warning message
Replies: 8
Views: 2009

If you want to identify which lookup failed you have two choices.

    A separate Transformer stage for each lookup.

    Separate test conditions on each of the reference input links - either check the link variable NOTFOUND or whether the returned key value is NULL.
by ray.wurlod
Mon Oct 09, 2006 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: validate date and populatate
Replies: 4
Views: 2018

There is no IsValid() function (unless you've written one) in server jobs.
by ray.wurlod
Mon Oct 09, 2006 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server shared container error in PX canvas
Replies: 2
Views: 815

Was another job that uses the shared container, or the shared container itself, open in another Designer at the time?
by ray.wurlod
Mon Oct 09, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv Issue in Different Versions
Replies: 11
Views: 4498

You change the TIME category of your locale. This is probably most easily managed using the NLS.ADMIN menu in the UV account. You will, however, need some familiarity with the ED command line editor in DataStage or with DataStage SQL, since the category definition is a record in a hashed file.
by ray.wurlod
Mon Oct 09, 2006 3:22 pm
Forum: General
Topic: Timeout importing UV account table list?
Replies: 7
Views: 5676

:idea: In your new dictionaries prefer I-desciptors (compiled) to correlatives (interpreted), both for reliability and performance.
by ray.wurlod
Mon Oct 09, 2006 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file
Replies: 10
Views: 2422

It doesn't help, except to show that you are determining that some rows are making it into the file by inspecting the file. You must play detective to find out why the file is being cleared? Could it be that whatever you're using to watch it has its file pointer at beginning-of-file and, when you cl...
by ray.wurlod
Mon Oct 09, 2006 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column is taking more than defined length in dataset
Replies: 6
Views: 1390

Convert to string and trim the leading space character. Note that this may produce wrong answer if your numeric value is negative.
by ray.wurlod
Mon Oct 09, 2006 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Misleading job status
Replies: 5
Views: 1304

I predict that IBM will tell you that you are applying server job thinking to parallel job processing, and leave it at that.
by ray.wurlod
Mon Oct 09, 2006 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validating db2 tables on mainframes
Replies: 6
Views: 2459

Probably. I can't really say 100% without knowing exactly what the logic is, but if you can build it using the expression editor then it's doable.