Search found 6797 matches
- Wed Jan 17, 2007 10:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparaison between Old and new value in stage variable
- Replies: 13
- Views: 3039
- Wed Jan 17, 2007 10:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Redbrick
- Replies: 10
- Views: 2669
- Wed Jan 17, 2007 8:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of a Stored Procedure stage
- Replies: 6
- Views: 2293
- Wed Jan 17, 2007 7:50 am
- Forum: General
- Topic: Input buferring
- Replies: 8
- Views: 2869
- Wed Jan 17, 2007 7:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Weird Error
- Replies: 4
- Views: 1708
- Wed Jan 17, 2007 7:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting count from a log of job
- Replies: 6
- Views: 1580
Get the last event number using lognewest with the dsjob command. That will give you the number of entries present in your entire log file. If you want number of enteries for the latest run then you need to get lognewest before the job starts and after it ends. Subtract them and that will give you t...
- Tue Jan 16, 2007 10:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pulling out Text in between tags
- Replies: 11
- Views: 2405
- Tue Jan 16, 2007 8:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pulling out Text in between tags
- Replies: 11
- Views: 2405
- Tue Jan 16, 2007 6:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading Discrepancies in DEV and QA Environments
- Replies: 15
- Views: 3866
- Tue Jan 16, 2007 4:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Slow Loading Performance - Oracle 10g
- Replies: 21
- Views: 6173
- Tue Jan 16, 2007 3:51 pm
- Forum: General
- Topic: Unable to import ODBC table defs
- Replies: 19
- Views: 7567
- Tue Jan 16, 2007 3:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Slow Loading Performance - Oracle 10g
- Replies: 21
- Views: 6173
Do your unions and other transformations in DataStage. Since your source is a database, go for Ken's suggestions. Using mod, select data in chunks and pass it through your transformations, simultaneously, using multiple instance. This is for the "ET" part in ETL. For "L" , use a bulk loader for all ...
- Tue Jan 16, 2007 3:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: help in using the Modify Stage
- Replies: 5
- Views: 1373
Ok then my code will do totally different. Use Handle_Null(). Refer here for more details.
- Tue Jan 16, 2007 3:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding FTP STAGE
- Replies: 15
- Views: 3372
- Tue Jan 16, 2007 3:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: help in using the Modify Stage
- Replies: 5
- Views: 1373
NullToValue() will check if incoming is a null and then change it to the value you specify as second argument. Do this in the transformer
Code: Select all
If Len(Trim(in.CTN_CONFIG_NUM_DEALS)) < 1 then SetNull() else in.CTN_CONFIG_NUM_DEALS