Search found 15603 matches

by ArndW
Tue Jun 05, 2007 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: moving records from seq file to netezza table
Replies: 1
Views: 637

Attu, this is a very common error message and has been discussed several times in this forum, try using an exact search for the string "Exporting nullable field without null handling properties" and you will get 25 hits. This happens when DS has a nullable field going to an output which either isn't...
by ArndW
Tue Jun 05, 2007 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing input 1 row as multiple rows to the target db
Replies: 9
Views: 2958

Write the field to a sequential file using a space as the line terminator, then read this sequential file again using one column and space as the line terminator and you will read in each word as a distinct row, which you can then use to populate your table. For performance you can specify that this...
by ArndW
Mon Jun 04, 2007 8:31 pm
Forum: General
Topic: Wrong dates in Hash File
Replies: 9
Views: 4030

You shouldn't be using SUBSTRINGS function, that is specifically for dynamic array strings. Use the format Link_SecuentialFile.Date[1,4] instead. If you still have a problem, try replacing the hashed file with a sequential file, and also add in a column containing the original varchar column to see ...
by ArndW
Sun Jun 03, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Dates in multiple formats from a text file
Replies: 4
Views: 1215

I had the same issue a while ago and couldn't get PX to parse a variable length date format. So what I ended up doing was writing a server job to parse the date and output that to named pipe, which was used as input by the PX job.
by ArndW
Fri Jun 01, 2007 1:55 am
Forum: General
Topic: DS 5.2 compatibility with Solaris 10
Replies: 2
Views: 652

Operating system are usually backwards compatible, so there should be no reason that I can think of why this won't work. But IBM/Ascential won't support it if anything does go wrong since 5.2 is no longer in the support matrix.
by ArndW
Fri Jun 01, 2007 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add_to_heap() - Unable to allocate memory warning
Replies: 19
Views: 6285

I cannot recall the exact conditions, I'd have to look at the documentation to get those values.

Are you loading other files to memory in the same job? If yes, and you don't preload them, does the original file load without having to resort to the heap?
by ArndW
Fri Jun 01, 2007 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add_to_heap() - Unable to allocate memory warning
Replies: 19
Views: 6285

tutul - I'm sorry about my post earlier, I was off dreaming and thought that the maximum memory for file buffering was set in the uvconfig file; while it is actually a setting that is done in the Administrator and tunables tab. I'm not at a system with DS right now, but I seem to remember you also n...
by ArndW
Thu May 31, 2007 9:28 pm
Forum: General
Topic: Datastage Parallel Xtender
Replies: 4
Views: 2840

There is no single function that does this, but with PX you won't need to check, since you can use the reject link on the database stage to ensure that no records are dropped.
by ArndW
Thu May 31, 2007 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No of years
Replies: 11
Views: 2364

Srimitta, do you now understand why all the other posters are asking you for your definition of "years"? I posted my snippet knowing that it would be incorrect, but at least it did require you to define in more detail what you need. If you use ICONV() on both dates the difference between them will b...
by ArndW
Thu May 31, 2007 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Job
Replies: 7
Views: 2828

The error messages look odd.

What options are you using when calling the job from the sequence? Have you thought about using the "reset then run@ option so you don't need to explicitly reset the job?
by ArndW
Thu May 31, 2007 5:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No of years
Replies: 11
Views: 2364

Srimitta,

it looks like you haven't experimented yet, but what would be wrong with:

Code: Select all

In.Column[29,4]-In.Column[7,4]
by ArndW
Thu May 31, 2007 4:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add_to_heap() - Unable to allocate memory warning
Replies: 19
Views: 6285

It would seem that either your hashed file is larger than the 999Mb you specified, or that this value isn't being used at runtime. Are you sure that you ran uvregen after changing your configuration file? Use "smat -t" to see what your current values are.
by ArndW
Thu May 31, 2007 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dedesign on Unix server
Replies: 1
Views: 847

The Designer (as well as the manager, director and administrator) are all PC-client based tools and have no UNIX server versions. Some of the actions and commands can be run from the command line, but none of the designer functionality is available outside of the graphical interface.
by ArndW
Thu May 31, 2007 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Login Failed
Replies: 12
Views: 2401

Does that mean you can login using the Designer/Director/Manager/Administrator using your admin account, but get the error message when trying to login as a DataStage user?
by ArndW
Thu May 31, 2007 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No of years
Replies: 11
Views: 2364

The ICONV function has several options that can convert the data appropriately, depending upon your definition of "year" as noted in Craig's post. You can convert the date into the internal format (using the 10 character substring and format of "D4/MDY" and then use the difference in days or just us...