Search found 15603 matches
- 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...
- 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...
- 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 ...
- 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
- Fri Jun 01, 2007 1:55 am
- Forum: General
- Topic: DS 5.2 compatibility with Solaris 10
- Replies: 2
- Views: 652
- 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
- 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...
- Thu May 31, 2007 9:28 pm
- Forum: General
- Topic: Datastage Parallel Xtender
- Replies: 4
- Views: 2840
- 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...
- Thu May 31, 2007 5:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reset the Job
- Replies: 7
- Views: 2828
- 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:
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]- 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
- Thu May 31, 2007 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dedesign on Unix server
- Replies: 1
- Views: 847
- Thu May 31, 2007 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Login Failed
- Replies: 12
- Views: 2401
- 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...