Search found 53125 matches
- Mon Sep 17, 2007 1:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequencer logic
- Replies: 3
- Views: 1066
Sequencer logic is easy. The output fires if "Any" of its inputs fires, or if "All" of its inputs fire. What you have there is a job sequence, not a sequencer. Your problem is that the job sequence is doing exactly what you have asked it to do, by checking "automatically handle failure" and not incl...
- Mon Sep 17, 2007 1:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with Change Capture Stage
- Replies: 7
- Views: 3007
- Mon Sep 17, 2007 1:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Any way to get the concatenation of input columns done
- Replies: 3
- Views: 782
- Mon Sep 17, 2007 1:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Any way to get the concatenation of input columns done
- Replies: 3
- Views: 782
- Mon Sep 17, 2007 1:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Kill -9 command - datastage process.
- Replies: 3
- Views: 1274
- Mon Sep 17, 2007 12:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem while sorting
- Replies: 4
- Views: 1480
- Mon Sep 17, 2007 12:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Any way to put parameter?
- Replies: 8
- Views: 2512
- Sun Sep 16, 2007 11:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: RCP and Nullable Columns
- Replies: 4
- Views: 1778
- Sun Sep 16, 2007 11:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to handle LongNVarchar requirement
- Replies: 6
- Views: 2504
- Sun Sep 16, 2007 11:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: "quote" value must be one of: single', 'double', o
- Replies: 2
- Views: 1335
- Sun Sep 16, 2007 11:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Non-ASCII character conversion - best method
- Replies: 2
- Views: 772
Unless you have NLS enabled all the characters you are processing are ASCII. ASCII is a way of encoding characters encountered in business data processing. It is possible, of course, that you are receiving EBCDIC data (a different way of encoding), but in that case none of your characters will be AS...
- Sun Sep 16, 2007 9:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: look up
- Replies: 4
- Views: 946
- Sun Sep 16, 2007 2:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Working with Flags in SCD's
- Replies: 2
- Views: 762
Basically you are performing a lookup to determine whether the record already exists in the target table so the decision about new rows is already made (lookup fails). Then you effect some form of change detection - there are several approaches available - and determine whether there is a change. Th...
- Sat Sep 15, 2007 3:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: RCP and Nullable Columns
- Replies: 4
- Views: 1778
You/we can't tell where this is occurring, since your operators are being combined. But, at a guess, I'd say that somewhere in your job the EmpName column is defined as not nullable or that you are using a stage type that does not tolerate null. With no knowledge of your job design it is impossible ...
- Sat Sep 15, 2007 3:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to handle LongNVarchar requirement
- Replies: 6
- Views: 2504
You can't do it in the Transformer, because you can't even SELECT the NTEXT data type. The extraction SQL could, of course, CAST as NVARCHAR or NLONGVARCHAR. I've also seen an approach where the extraction SQL brought in "chunks" (substrings) of a very large text string - from memory four columns ea...