Search found 15603 matches
- Wed Nov 26, 2008 8:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CONVERT Function not performing as expected...
- Replies: 11
- Views: 2992
- Wed Nov 26, 2008 8:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To populate top five values
- Replies: 10
- Views: 1404
- Wed Nov 26, 2008 8:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not able to create project
- Replies: 7
- Views: 1864
- Wed Nov 26, 2008 8:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: XML File Problem
- Replies: 3
- Views: 2538
- Wed Nov 26, 2008 8:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
- Replies: 11
- Views: 8506
IF "FIELD_NAME" can have a null value, then the derivation should be
Code: Select all
IF IsNull(FIELD_NAME) THEN 'N' ELSE If(Len(Trim(FIELD_NAME))>0 Then "YES" else "N". - Wed Nov 26, 2008 6:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
- Replies: 11
- Views: 8506
- Wed Nov 26, 2008 6:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Handling CLOB datatype in datastage
- Replies: 7
- Views: 7516
- Wed Nov 26, 2008 6:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Slow write into dataset
- Replies: 2
- Views: 755
- Wed Nov 26, 2008 6:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job halt without reason
- Replies: 15
- Views: 4171
- Wed Nov 26, 2008 6:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Rows per transaction in ODBC stage
- Replies: 3
- Views: 1466
- Wed Nov 26, 2008 6:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential file stage - Filter option
- Replies: 8
- Views: 5550
- Wed Nov 26, 2008 6:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To populate top five values
- Replies: 10
- Views: 1404
- Wed Nov 26, 2008 6:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
- Replies: 11
- Views: 8506
- Wed Nov 26, 2008 5:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To populate top five values
- Replies: 10
- Views: 1404
- Wed Nov 26, 2008 5:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Handling CLOB datatype in datastage
- Replies: 7
- Views: 7516
Have your SQL split the CLOB into n columns of VarChar(2000) each and then use either a transform stage or Column Import stage to concatenate the list of VarChar columns into one large one. This method is being used on my current project because we have CLOBs and BLOBs of up to 60Kb (very wordy XML)...