Search found 53125 matches
- Tue Nov 20, 2007 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Decimal Separator
- Replies: 2
- Views: 1177
NLS consists of two pieces - the character map (e.g UTF-8) and the locale. The locale is a means for representing different categories of data according to local expectations. The five categories are TIME (dates and times), NUMERIC, CURRENCY, CHARACTER (casing and categories) and COLLATE (sorting ru...
- Tue Nov 20, 2007 5:33 am
- Forum: General
- Topic: Release a job in DataStage
- Replies: 2
- Views: 1347
"Release" has a very specific meaning in DataStage; it means "release (a read-only version-stamped copy of the job) for production". I suspect this is not what you mean. If you mean deleting a job, then there is no easy way to do it from a UNIX command prompt. There are many interdependencies in the...
- Tue Nov 20, 2007 5:30 am
- Forum: General
- Topic: How to capture the record count that has gone to the target
- Replies: 2
- Views: 1660
- Tue Nov 20, 2007 5:28 am
- Forum: IBM QualityStage
- Topic: main_program: Fatal Error: Field not found: keyChange
- Replies: 5
- Views: 3013
- Tue Nov 20, 2007 2:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to read from fixed width file
- Replies: 6
- Views: 3667
No that's not what I said. Please read my post again. I was simply interpreting the underlying cause of your error message. Usually, though, I do prefer to use Char rather than VarChar, as it's better self-documentation. But DataStage itself can cope well with either. It's the Display (or Field Widt...
- Tue Nov 20, 2007 2:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Equivalent of 'sleep' in a server routine
- Replies: 4
- Views: 1167
Or, if that's too long:
Code: Select all
NAP milliseconds- Tue Nov 20, 2007 2:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can’t import/delete DataStage job
- Replies: 3
- Views: 6846
- Tue Nov 20, 2007 12:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to read from fixed width file
- Replies: 6
- Views: 3667
- Tue Nov 20, 2007 12:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Slow performance.
- Replies: 10
- Views: 3163
A better design is to segregate the inserts from the updates, and run them as separate input links (insert only and update only) into the target stage. The "double-barrelled" update strategy will get slower over time; it has to try the insert then, if there's a failure, determine whether or not it w...
- Mon Nov 19, 2007 11:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem returning @TRUE, @FALSE from Routine to Transformer
- Replies: 9
- Views: 6491
- Mon Nov 19, 2007 11:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mapping non related columns in where condition
- Replies: 1
- Views: 692
Assuming the first lookup on tbl2.col2 returns tbl2.col1 you can use that anywhere downstream to perform a lookup against a hashed file containing tbl3.col1 as its key. You can do this in the same Transformer stage, but only by typing (not with the Expression Editor) - and it will stay red but will ...
- Mon Nov 19, 2007 11:19 pm
- Forum: IBM QualityStage
- Topic: main_program: Fatal Error: Field not found: keyChange
- Replies: 5
- Views: 3013
- Mon Nov 19, 2007 7:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Inserting Parameter Value into Oracle Stage forHeaderTrailer
- Replies: 6
- Views: 2389
- Mon Nov 19, 2007 7:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Execute Command
- Replies: 2
- Views: 1319
Don't forget that you have to strip the line terminator off.
Code: Select all
Trim(Convert(@FM,"",Execute_Command_0.$CommandOutput))- Mon Nov 19, 2007 7:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating Sequence numbers in Parallel Transormer
- Replies: 20
- Views: 7994