Search found 15603 matches
- Fri Nov 17, 2006 8:40 am
- Forum: General
- Topic: Universe Stage
- Replies: 11
- Views: 5868
- Fri Nov 17, 2006 8:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: MetaData Mismatch Warning
- Replies: 30
- Views: 6086
- Fri Nov 17, 2006 8:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: All objects in the Job become PLUG objects.
- Replies: 9
- Views: 3122
- Fri Nov 17, 2006 8:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: MetaData Mismatch Warning
- Replies: 30
- Views: 6086
Sure, you can sign up for premium content at any time you wish to see a lot of informational and (hopefully) helpful content. AMT(SUM) is a new column and not in your DDL, it can have different metadata. When you are sure that a warning message is handled appropriately, you can demote it to informat...
- Fri Nov 17, 2006 5:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: MetaData Mismatch Warning
- Replies: 30
- Views: 6086
- Fri Nov 17, 2006 5:17 am
- Forum: General
- Topic: Universe Stage
- Replies: 11
- Views: 5868
My first thought is that your job is waiting on locks that it will never get. I vaguely recall having had a similar problem in the past. It is easier in this case to use a hashed file stage and change the query syntax around a bit to read "WITH NAME UNLIKE \\... AND READONLY EQ 'NRO'" in the selecti...
- Fri Nov 17, 2006 5:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: FTP Enterprise stage error
- Replies: 5
- Views: 1736
- Fri Nov 17, 2006 5:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Switch v/s filter stage
- Replies: 8
- Views: 3143
In this case the switch stage is exactly tailored to what you want to do and will be more efficient. If you have a large percentage of records that are dropped then the filter stage will be more appropriate, but if each row that comes in to the stage is passed on depending upon the values in one col...
- Fri Nov 17, 2006 5:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: E TFDR 000001 (002)- not able to view the data loaded
- Replies: 2
- Views: 1254
I tend to ignore the link colors in the Designer as I've had cases where the run information in the Designer and that in the Director log are different. The log file information is correct. The error message is pretty clear, the data set you are trying to read does not exist. What error message do y...
- Fri Nov 17, 2006 5:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pass valus to UNIX script fromDS control job
- Replies: 9
- Views: 1711
- Fri Nov 17, 2006 4:57 am
- Forum: General
- Topic: How to export the job log of a particular job?
- Replies: 5
- Views: 3921
- Fri Nov 17, 2006 4:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not being able to import data from a fixed width flat
- Replies: 6
- Views: 1662
- Thu Nov 16, 2006 4:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: fttp script
- Replies: 6
- Views: 1248
- Thu Nov 16, 2006 11:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Roundup routine
- Replies: 7
- Views: 1639
I would just use simple math; you can write your own roundup routine:
Roundup(Value,Places)
Hmmm, this could actually be an inline transform as well.
Roundup(Value,Places)
Code: Select all
Shift = 10**Places
Ans = INT(Value*Shift)/Shift
Hmmm, this could actually be an inline transform as well.
- Thu Nov 16, 2006 10:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Roundup routine
- Replies: 7
- Views: 1639