Search found 53125 matches
- Mon Apr 11, 2011 10:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: colaesce function
- Replies: 3
- Views: 1656
- Mon Apr 11, 2011 10:43 pm
- Forum: General
- Topic: user id privileges
- Replies: 4
- Views: 1616
- Mon Apr 11, 2011 10:42 pm
- Forum: General
- Topic: Restartability mechanisms
- Replies: 31
- Views: 12071
- Mon Apr 11, 2011 10:41 pm
- Forum: General
- Topic: user id privileges
- Replies: 4
- Views: 1616
- Mon Apr 11, 2011 7:57 pm
- Forum: General
- Topic: Unable to export Datastage project
- Replies: 5
- Views: 2035
- Mon Apr 11, 2011 7:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help regarding RANDOM data selecting
- Replies: 29
- Views: 9149
- Mon Apr 11, 2011 7:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: colaesce function
- Replies: 3
- Views: 1656
There is no COALESCE function in the Transformer stage. But you could use nested If..Then..Else operands. For example:
Code: Select all
If IsNotNull(InLink.A1) Then InLink.A1 Else If IsNotNull(InLink.A2) Then InLink.A2 Else InLink.A3- Mon Apr 11, 2011 7:49 pm
- Forum: General
- Topic: Unable to export Datastage project
- Replies: 5
- Views: 2035
- Mon Apr 11, 2011 4:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help regarding RANDOM data selecting
- Replies: 29
- Views: 9149
- Mon Apr 11, 2011 4:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Concatenation
- Replies: 6
- Views: 2787
Beware null values. Null concatenated to anything will result in null. You must handle this. For example:
Code: Select all
NullToValue(InLink.LastName,"?") : ", " : NullToEmpty(InLink.FirstName)- Mon Apr 11, 2011 4:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need to Improve Oracle to Netezza Performance
- Replies: 5
- Views: 2200
- Mon Apr 11, 2011 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: warning message :DataStage Job 4364 Phantom 6488
- Replies: 2
- Views: 1812
- Mon Apr 11, 2011 4:36 pm
- Forum: General
- Topic: List Users by Project
- Replies: 8
- Views: 3575
Their best answer is correct - you can't. In versions prior to 8.0 you could report via the DS_LICENSE table, but that has now become the login and security service. Similarly, prior to version 8.0 project roles for DataStage were stored in hidden files in the project (such as .operator.adm and .dev...
- Mon Apr 11, 2011 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to Import jobs in datastage 7.5.1.A
- Replies: 3
- Views: 2772
- Mon Apr 11, 2011 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accomodating Date data in the format YYYYDDMM
- Replies: 8
- Views: 2381