Search found 15603 matches

by ArndW
Wed Jul 14, 2010 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do we implement in Datastage Server Jobs
Replies: 17
Views: 9446

Range lookups in transform stages don't exist in server, which is why Ray suggested you implement it in SQL.
by ArndW
Wed Jul 14, 2010 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bind variable in the OCI stage differ from 7.1 to 8.1
Replies: 6
Views: 1886

Did this change happen after re-compilation of the job and does it still work correctly or incorrectly? What are your input columns (:2 would mean 2nd input column, perhaps that no longer exists).
by ArndW
Wed Jul 14, 2010 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Message splitup
Replies: 6
Views: 2517

In the upper left hand picture, click on the stage and not the link, then you can choose sequential execution mode.
by ArndW
Wed Jul 14, 2010 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: libqabwvcd.sl file missng
Replies: 19
Views: 4085

I'm not sure if the OP stated that the file is actually present there or elsewhere on their system.
by ArndW
Wed Jul 14, 2010 2:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert HEX 92 Issue
Replies: 13
Views: 12187

You can use the SEQ() or UNISEQ() function to get the numeric equivalent of a single character, that might help you debug your problem.
by ArndW
Wed Jul 14, 2010 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2/UDB enterprise stage Message file
Replies: 6
Views: 1535

Add a reject output to your DB2 stage and you will see the rejected rows as well as their SQL error codes.
by ArndW
Wed Jul 14, 2010 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 4174

It is very hard to generalize performance impact. If your system were IO bound then adding complexity to transform or modify stages would make no difference in throughput. In this case the system was CPU bound and thus adding NullToValue() did make an impact. Perhaps reducing the number of processin...
by ArndW
Wed Jul 14, 2010 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Message splitup
Replies: 6
Views: 2517

You can declare your MQ stage to run sequentially, that way the APT_CONFIG_FILE setting doesn't apply. Downstream you can then repartation to your heart's content.
by ArndW
Wed Jul 14, 2010 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replacing single quote with two single quotes in Transformer
Replies: 3
Views: 2982

Is this a server or a parallel job and, if it is a parallel job, can it be made into a server job or use a BASIC transform stage - in which case the EREPLACE(YourString,"'","''") function would work for you. If the number of single quotes is limited to one or two, then you can us...
by ArndW
Tue Jul 13, 2010 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heavy I/O - need help with job design
Replies: 7
Views: 5007

Normally jobs will abort because their startup time is too long and this is due to the system becoming overloaded by too many concurrent process. If all of your jobs are sequential then you have some other issue. You should post the exact error message once you reproduce the problem.
by ArndW
Tue Jul 13, 2010 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heavy I/O - need help with job design
Replies: 7
Views: 5007

I would start at the "other" end - instead of trying to run all these jobs as quickly as possible with as much parallelism as possible, I would ask "how much time will I have to do this processing?". The answer to that question might mean that you can design your top-level master...
by ArndW
Mon Jul 12, 2010 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: English / French decimal separator issue
Replies: 16
Views: 6898

I would concur with support - don't touch this setting unless you need to, and you have other options such as setting job-level NLS attributes.
by ArndW
Mon Jul 12, 2010 8:46 am
Forum: General
Topic: Status code = -9999 DSJE_DSJOB_ERROR
Replies: 10
Views: 8636

What does "dsjob -jobstatus DMDev RECON_STG1_2_STG2" return?
by ArndW
Mon Jul 12, 2010 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 20
Views: 4321

This is rather confusing. Did using TRIM() work or did it not? If it did, then as Sainath has stated, you have or have had a CHAR() somewhere along the line and the conversion from Char to VarChar does not trim fields but leaves trailing blanks.
by ArndW
Mon Jul 12, 2010 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: English / French decimal separator issue
Replies: 16
Views: 6898

The NLS_LANG only applies to Oracle and did you do a uvregen after making the changes to your uvconfig file? You can check the date/time modified of the hidden ".uvconfig" file in the same directory to see if the uvregen was done. Why don't you specify a job-level locale definition for the...