Search found 15603 matches

by ArndW
Wed Aug 01, 2007 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 1934

I see. You can always put a query such as

Code: Select all

IF CHAR(In.Column[1,1])=000 THEN 'TTTTT' ELSE In.Column
I was looking for a way to do it as part of the read instead of as part of the processing.
by ArndW
Wed Aug 01, 2007 11:12 pm
Forum: General
Topic: Rearding interprocess stage
Replies: 5
Views: 1215

If you enable interprocess buffering you can dispense with the IPC stage in this job. The only way that the sequential file can be written to and read from simultaneously is if you declare it as a named pipe (create it with mkfifo). Please check your sequential file setting on write and read to make...
by ArndW
Wed Aug 01, 2007 10:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2047

What about your SQL SELECT clause, might you be usnig some conversion or CAST() in there?
by ArndW
Wed Aug 01, 2007 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 1934

You can set the attribute of columns (right-mouse click, then 'edit row') to explicitly set the default value of fields that are not interpreted correctly on input, as would happen with values of \000
by ArndW
Wed Aug 01, 2007 8:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I copy hash files from UNIX command line?
Replies: 8
Views: 4659

Yes, hashed files can be copied - but they might not be useable afterwards. If you reference hashed files using a VOC entry the files cannot be copied unless you know how to change the VOC pointers. If you access the hashed file using an absolute path then you can copy it. A dynamic hashed file is a...
by ArndW
Wed Aug 01, 2007 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in viewing the data
Replies: 3
Views: 993

I wonder if you might not have a non-displayable character at position 31? Have you tried doing a view-data and actually clicking on the field UNQ_VAL and seeing if you can move the cursor past position 30. Since you cannot VI a database, how are you generating the sequential file and the table inse...
by ArndW
Wed Aug 01, 2007 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid and StringToDate
Replies: 8
Views: 8474

This is your output representation for an invalid date format.
by ArndW
Wed Aug 01, 2007 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP and Renaming files
Replies: 5
Views: 1348

In this case you should not be using the FTP stage but executing the FTP command and subsequent rename directly. The method of putting a script around a FTP command is highly dependant upon your flavor of UNIX and I've found the best way to get a running script is to use Google to get a specific exa...
by ArndW
Wed Aug 01, 2007 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Concatenate function
Replies: 5
Views: 1015

Could you post your actual derivation please?
by ArndW
Wed Aug 01, 2007 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while creating job
Replies: 12
Views: 4816

I've encountered this limit on AIX before with very large projects and while the real solution is to split the project into multiple ones that are smaller and more manageable (As well as giving better response in the Director) you can resize some of DataStage's files to static hashed, this reduces t...
by ArndW
Wed Aug 01, 2007 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2047

What have you defined the column as in the ODBC read stage.
by ArndW
Wed Aug 01, 2007 5:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Failed in Hashed File
Replies: 4
Views: 1643

Might you be reaching a 2Gb limit in the hashed file? Check the size of the DATA.30 and OVER.30 files in the directory. The only other cause might be that you have a @FM or @SQL.NULL in the key. Since you have ruled those out it is most likely the former.
by ArndW
Tue Jul 31, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Integers
Replies: 5
Views: 1556

PX has no line-level debugger as with Server jobs, but I usually make do by judicious use of PEEK stages to see the data. Which function did you use to convert from the original number/integer to VarChar as - I am surprised that you are getting leading spaces?
by ArndW
Tue Jul 31, 2007 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for some advice on Preload file to memory
Replies: 24
Views: 7071

The default caching mechanism is 'private' so that message is just informational; any other type of cacheing would require configuration file changes and explicit enabling in the relevant jobs. Total size comes upto 1200MB and this fits into the 999MB memory. Ummm... how did you did you come to that...