Search found 53125 matches
- Wed Sep 01, 2010 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: can we execute the command prompt from DS8.1
- Replies: 2
- Views: 916
- Wed Sep 01, 2010 4:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Re Naming DataSets
- Replies: 5
- Views: 1473
- Wed Sep 01, 2010 4:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unix log and Director log
- Replies: 4
- Views: 1897
- Wed Sep 01, 2010 4:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ORA-01400: cannot insert NULL
- Replies: 17
- Views: 9087
- Wed Sep 01, 2010 4:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Query used in universe stage
- Replies: 11
- Views: 2600
- Wed Sep 01, 2010 4:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: File Type Defaults Timestamp
- Replies: 3
- Views: 932
- Wed Sep 01, 2010 4:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot view any jobs anymore
- Replies: 4
- Views: 1620
- Wed Sep 01, 2010 4:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp Format
- Replies: 5
- Views: 2665
- Wed Sep 01, 2010 3:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: find PO BOX in a string
- Replies: 2
- Views: 1461
The Index() function is the one you want.
or you might add other variations
Code: Select all
(Index(InLink.TheString, "PO BOX", 1) > 0)Code: Select all
(Index(InLink.TheString, "PO BOX", 1) > 0) Or (Index(InLink.TheString, "POBOX", 1) > 0)- Wed Sep 01, 2010 3:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp Format
- Replies: 5
- Views: 2665
Lose the "H" from the time conversion, which specifies a 12-hour clock. No "H" specifies a 24-hour clock.
Code: Select all
OCONV(DATE(),"D/MDY[2,2,4]") :" " : OCONV(TIME(),"MTS")- Wed Sep 01, 2010 1:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: what is RTLogging & ORLogging ?
- Replies: 5
- Views: 3540
- Wed Sep 01, 2010 1:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to do this in transformer stage?
- Replies: 0
- Views: 1018
Derive ACTIVITY_STATUS as
Code: Select all
If InLink.LastActivityDate < DateFromDaysSince(-365,CurrentDate()) Then "INACTIVE" Else "ACTIVE"- Wed Sep 01, 2010 1:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Loop final value not numeric
- Replies: 4
- Views: 4992
- Wed Sep 01, 2010 1:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Extract and Update the same table
- Replies: 3
- Views: 1190
- Wed Sep 01, 2010 1:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 2 ODBC Stages Open command not deleting each other's data.
- Replies: 11
- Views: 3385