Search found 15603 matches

by ArndW
Mon Mar 13, 2006 3:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in exporting job by category
Replies: 7
Views: 1796

If a DataStage hashed file/table has an index on a column, any SELECTs that use that column as part of the selection criteria will use the index. If the index has somehow become corrupt or invalid, a SELECT on that file will return incorrect rows even though the file itself contains the correct info...
by ArndW
Mon Mar 13, 2006 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Round Robin method in Link Partitioner
Replies: 5
Views: 923

That is very odd behaviour; since the round-robin will distribute the rows one at a time to each successive link. You should be getting 4,4,4 rows going down each path. I've just done a quick test and that is the behaviour I am seeing. Are you 100% certain that you've specified round-robin in your c...
by ArndW
Sun Mar 12, 2006 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: READ FROM AND WRITE INTO COMMANDS
Replies: 1
Views: 657

Hello Guysma and welcome to DSXchange. I am sure that come tomorrow you will get some answers from people who've used DS390 recently and who will hopefully be able to assist you. I did want to suggest that you use lowercase to enter your queries, as using all uppercase is considered shouting.
by ArndW
Sat Mar 11, 2006 2:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in PX job while reading from odbc job
Replies: 3
Views: 903

You didn't declare the length correctly, otherwise you wouldn't be getting the error message. The correct length of your file is 144 bytes per row, and you declared only 13 bytes of it. You have other options in the PX sequential file stage to have it ignore incorrect length specifications but I'm n...
by ArndW
Sat Mar 11, 2006 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup(looping in the ref table)
Replies: 9
Views: 2791

naren - if you have a full pathed hashed file you need to use OPENPATH, not OPEN.
by ArndW
Sat Mar 11, 2006 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in PX job while reading from odbc job
Replies: 3
Views: 903

Declare the length correctly, add a new dummy column with length 131 that you don't use.
by ArndW
Sat Mar 11, 2006 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

kumar_s wrote:Trim also works for Char...


Kumar, what does TRIM() on a CHAR(10) field containing "hello " return?
by ArndW
Fri Mar 10, 2006 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup(looping in the ref table)
Replies: 9
Views: 2791

Naren, Here is a shell program that is a "hint" - it doesn't use COMMON to skip re-opening the file and only uses a simple key, one column with your 0 or 1 STATUS and one column with the next key. Don't just copy this and run it - there is no error checking or handling and you should go through each...
by ArndW
Fri Mar 10, 2006 11:59 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 26045

In a wonderful display of Customer Service effort, I received this response from Pearson VUE: Sir, Unfortunately I have to ask you to contact IBM directly to find out which code they use with us. Without the correct code I'm afraid I can't help. Thank you. Jonathan Addams Pearson VUE after I had pas...
by ArndW
Fri Mar 10, 2006 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sync source on DataStage job
Replies: 6
Views: 2541

A typical source control system with it's check-in and check-out would only work on .DSX or .XML flat files extracted from or loaded into the projects. I've seen this done but it was quite unwieldy and, IMHO, unmanageable for the longer.
by ArndW
Fri Mar 10, 2006 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized Argument
Replies: 5
Views: 10611

What does your user SQL read?
by ArndW
Fri Mar 10, 2006 8:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

If your data type is VarChar and trim doesn't work then you don't have spaces in your string. But I looked at your code and

StringToDecimal(Trim("FieldName"))
will not work, you need to remove the 2 double-quotes so that the value of the parameter is used, not it's name.
by ArndW
Fri Mar 10, 2006 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

The TRIM will only work on VarChar and not CHAR columns.
by ArndW
Fri Mar 10, 2006 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data from Webpages To Datastage
Replies: 2
Views: 985

Where are your webpages being read from? Normally the pages will contain only HTML text and reference other non-text data. There is a Click Pack to help you work with the log files, but it doesn't help with the actual pages. You can strip out unprintable text (using the ;'MCP' conversion) to clean o...
by ArndW
Fri Mar 10, 2006 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

Use TRIM() to remove the spaces that the StringToDecimal function can't handle.