None of the other NLS parameters has any effect if NLSMODE is 0.
Search for "uvregen" or "uv -admin -regen" either here or in your DataStage manuals.
Search found 53125 matches
- Wed Apr 16, 2008 4:40 pm
- Forum: General
- Topic: Information About NLS
- Replies: 3
- Views: 4691
- Wed Apr 16, 2008 4:39 pm
- Forum: General
- Topic: ds job stats
- Replies: 10
- Views: 2303
- Wed Apr 16, 2008 6:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compare stage
- Replies: 1
- Views: 789
- Wed Apr 16, 2008 6:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: difference between two timestamp fields
- Replies: 1
- Views: 1147
- Wed Apr 16, 2008 5:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel Job execution failure
- Replies: 7
- Views: 1620
- Wed Apr 16, 2008 5:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ICONV SERVER/PARALLEL
- Replies: 3
- Views: 1101
- Wed Apr 16, 2008 5:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSX stage names to meaningful stage names
- Replies: 10
- Views: 9841
- Wed Apr 16, 2008 5:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Execution of API Calls from DS Admin Command line
- Replies: 4
- Views: 1658
Welcome aboard. :D Easy answer; these are functions. It's not possible to invoke a function from the command line in ANY product. There is a command line interface (dsjob) that you can use from the operating system level that yields most of the functionality of the DataStage API. You can read about ...
- Wed Apr 16, 2008 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there count without using aggregator
- Replies: 18
- Views: 5358
- Wed Apr 16, 2008 5:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Make Vector
- Replies: 1
- Views: 929
Welcome aboard. :D There's no specific equivalent of the Make Vector stage, but you can do it easily with the multi-value handling capabilities of a UniVerse stage. Create a table definition that supports multi-valued fields. Load the dynamically normalized table then select from the un-normalized t...
- Wed Apr 16, 2008 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Approach in Filling a Relational Database
- Replies: 15
- Views: 4102
That's part of what ETL is about. I gave the main reason in my earlier post - you retain complete control, and don't update the target table until you're ready to do so. If your data volumes are large, you can use the "bucket file" to reduce the volume of rows needed from the target. Essentially thi...
- Wed Apr 16, 2008 2:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Function usage
- Replies: 8
- Views: 1303
- Wed Apr 16, 2008 2:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Approach in Filling a Relational Database
- Replies: 15
- Views: 4102
Perform lookups against (local copies of) the target table. Dump the output into a staging area. That way you can run and re-run the referential integrity checking and surrogate key generation phase over and over until you get it right, and you have a good basis for building restart-recovery into yo...
- Wed Apr 16, 2008 2:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading special characters
- Replies: 2
- Views: 1050
- Wed Apr 16, 2008 12:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there count without using aggregator
- Replies: 18
- Views: 5358
Welcome aboard. The answer is yes, but why would you want to? That's what the Aggregator stage is for. And it works MUCH, MUCH BETTER if the data are sorted on the grouping key(s) and you assert this fact on the input link to the Aggregator. The Transformer stage method REQUIRES sorted input to be s...