Search found 53125 matches
- Tue Feb 17, 2009 2:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle table definitions got multiplied by 3
- Replies: 5
- Views: 1967
Just accept it. With NLS enabled Oracle reports that it uses three bytes per character (and, indeed, mostly does). DataStage's NLS map translates that into DataStage's internal UTF mapping (variable number of bytes per character) when reading, and back again when writing. It all works OK. Don't worr...
- Tue Feb 17, 2009 2:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migration from v 8.0 to v 8.1
- Replies: 23
- Views: 8340
There are no new stage types compared to 7.5. Why would there be? There are new versions of some (stage types are versioned independently of the base product). There are some new items of functionality, such as parameter sets. The main reason to upgrade from 8.0 to 8.1 is that there are fewer bugs i...
- Tue Feb 17, 2009 2:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Fetch Column derivation for all Active stages
- Replies: 5
- Views: 1673
- Tue Feb 17, 2009 2:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataDirect ODBC drivers version 5.0 expired after 15 days
- Replies: 8
- Views: 4545
The IVVM.LIC file should be somewhere in the branded_odbc directory. Check whether anyone at your site has (re)moved it. The drivers are authorized for use with DataStage stages, and should not expire under these circumstances. If you attempt to use them from other clients or code, then they do expi...
- Tue Feb 17, 2009 3:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference Between Link Sort and Explicit Sort Stage
- Replies: 1
- Views: 1413
- Tue Feb 17, 2009 3:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job not opned
- Replies: 10
- Views: 2853
- Tue Feb 17, 2009 3:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-00911 error
- Replies: 17
- Views: 5608
- Tue Feb 17, 2009 3:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not able to open text file
- Replies: 6
- Views: 2358
- Tue Feb 17, 2009 3:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding Hash File Usage
- Replies: 4
- Views: 1342
- Tue Feb 17, 2009 2:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job not opned
- Replies: 10
- Views: 2853
- Tue Feb 17, 2009 1:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job not opned
- Replies: 10
- Views: 2853
Try the following query to determine whether the stage types are installed in the project. It will return rows if they are, and no rows if they are not.
Code: Select all
SELECT * FROM DS_STAGETYPES WHERE EVAL "UPCASE(@ID)" LIKE '%TERA%' OR EVAL "UPCASE(@ID)" LIKE '%ML%';- Tue Feb 17, 2009 1:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job not opned
- Replies: 10
- Views: 2853
- Tue Feb 17, 2009 1:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job not opned
- Replies: 10
- Views: 2853
- Tue Feb 17, 2009 1:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Grouping the records of DS_AUDIT
- Replies: 15
- Views: 5584
I couldn't get that to work either. But if you create the I-type in the file dictionary of DS_AUDIT and use that, it's all good. SELECT MOD_DATE, COUNT(*) FROM UNNEST DS_AUDIT ON MODS GROUP BY MOD_DATE; To get the I-type into the file dictionary and functional you need two commands - one is SQL (wit...
- Tue Feb 17, 2009 1:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Grouping the records of DS_AUDIT
- Replies: 15
- Views: 5584
I couldn't get that to work either. But if you create the I-type in the file dictionary of DS_AUDIT and use that, it's all good. SELECT MOD_DATE, COUNT(*) FROM UNNEST DS_AUDIT ON MODS GROUP BY MOD_DATE; To get the I-type into the file dictionary and functional you need two commands - one is SQL (wit...