Search found 15603 matches

by ArndW
Tue Sep 20, 2005 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance degregation with parallel reads
Replies: 5
Views: 1445

That is odd behaviour. I think that taking out the write to the datasets will let you see if it might be related to your database read part of the job; that is the only thing I can think of at the moment.
by ArndW
Tue Sep 20, 2005 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Global routine defining
Replies: 1
Views: 426

snassimr, the method of defining and using routines in DataStage is project-centric. The actual methodology used is called local cataloging in UniVerse terms. You can define routines as being "globally cataloged" but this would get overwritten when you recompile the routine. Overall it makes more se...
by ArndW
Tue Sep 20, 2005 12:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Projects with many jobs have slow graphical front-end resp.
Replies: 7
Views: 1886

Projects with many jobs have slow graphical front-end resp.

Ever since the first versions of DataStage, the number of jobs in a project, and later on within a Category in a project, adversely affected the performance in listing jobs in the Director, Designer and Manager. Although this has gotten a bit better over time, it still remains an issue at every sing...
by ArndW
Tue Sep 20, 2005 12:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What does the error mean?
Replies: 6
Views: 1521

Hi Rleishman, TRANS1 is not the name of the Transformer. Anyways, The key that is generated has a stage variable which is not initialised. But the problem is if thats the case, the key field should contain the null value in the output of the sequential file which is not... Shyju, who incorrectly to...
by ArndW
Tue Sep 20, 2005 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum field size in a hashed file?
Replies: 6
Views: 1183

Craig, I remember back in Prime Information days we had a customer who complained about their performance in reading/writing to Information. After looking at just about every attribute on the OS I finally ended up having to go to the customer site to try to find out the cause. Lo and behold, after p...
by ArndW
Sun Sep 18, 2005 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance degregation with parallel reads
Replies: 5
Views: 1445

Roy, is this performance degradation consistent across runs? There shouldn't really be a change in rows-per-second in typical PX jobs that I have seen. It might be worth reading from Oracle and not writing anything out at all and seeing if the performance stays constant throughout the run. What is y...
by ArndW
Fri Sep 16, 2005 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User Defined SQL
Replies: 7
Views: 2628

zam62,

it would be beneficial if you would tell us what the error message is.
by ArndW
Fri Sep 16, 2005 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incorrect Hexadecimal-ASCII conversion for accentuated chars
Replies: 1
Views: 2658

akhelif,

can you confirm that the e-egu accented character really is the character you are expecting by outputting the SEQ(Arg1) and looking in the ASCII table for it?
by ArndW
Fri Sep 16, 2005 2:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 EE Stage ERROR While Deleting Data
Replies: 7
Views: 3363

Daniel,

I recall having had a similar problem sometime in the past; it had to do with the way that the custom SQL was interpreted - so my question would be whether or not you are using your own SQL in the stage or using generated code? If it is custom, could you perhaps post it?
by ArndW
Thu Sep 15, 2005 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: platforms supported. Unix platforms?
Replies: 3
Views: 911

I don't know where you are reading that only Windoze platforms are supported for EE - they are a more recent add-on onto the various UNIX platforms. If you go to the Ascential web site you can find a full and complete list of supported platforms.
by ArndW
Thu Sep 15, 2005 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting the number of records.
Replies: 3
Views: 1202

In DataStage you would have to read through the whole file to get that number. In UNIX it would be "wc -l" and if you have DS installed on your workstation that command will also work in Windows from a DOS shell.
by ArndW
Thu Sep 15, 2005 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Numbers to Alphabates
Replies: 6
Views: 1248

bapaju, if you always have 2 digit codes and the numbers you have represent the position in the alphabet then you can use the CHAR(64+{number}) to get the appropriate letter. Since you said your string could be 2, 4 or 6 then the one-line derivation could be: IF LEN(In.String=2) THEN CHAR...
by ArndW
Thu Sep 15, 2005 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Static Hash file
Replies: 5
Views: 1168

Gokul,

Do you have columns going into the hashed file stage? Is at least one of them identified as a key? Can you try a View-Data on that hashed file stage?
by ArndW
Thu Sep 15, 2005 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets are not physically removed
Replies: 8
Views: 2834

I haven't used the GUI to remove datasets, but I would be surprised if that doesn't do it correctly. If you remove a .ds dataset descriptor file and then re-create the dataset in a program then you will have extraneous files in the scratch area from the previous set that will never get removed. If y...
by ArndW
Thu Sep 15, 2005 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets are not physically removed
Replies: 8
Views: 2834

Have you tried it at UNIX - "orchadmin rm {dataset.ds}"? It sounds like somehow just a unix "rm" was issued. Do you get any error messages from the dataset management program?