Search found 6797 matches
- Tue Jan 09, 2007 8:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Replace a character in a String
- Replies: 7
- Views: 11585
- Tue Jan 09, 2007 7:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Replace a character in a String
- Replies: 7
- Views: 11585
Nothing out of the box but you could write your own. Something like
Code: Select all
FUNCTION myCharReplace(myString, repChar, Pos)
charToReplace = myString[Pos,1]
Ans=Ereplace(myString, charToReplace, repchar, 1, 1)
- Tue Jan 09, 2007 7:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to retry a failed job automatically
- Replies: 5
- Views: 1614
Running the job immediately after it failed is not going to do any good. You should consider putting the sequence to sleep for a few minutes and then re-trying. Consider having a routine activity which has something like sec = Arg1 SLEEP sec Ans=1 Let the routine activity connect to your job. Enclos...
- Tue Jan 09, 2007 7:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dos2unix - problem while converting
- Replies: 13
- Views: 20599
Its not a dumb question Brad. It never hit us. The OP can also use
Code: Select all
sed 's/.$//' mydosfile.txt > unixfile.txt
- Tue Jan 09, 2007 3:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding Parameters
- Replies: 15
- Views: 3220
- Tue Jan 09, 2007 3:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to supress leading zeros
- Replies: 10
- Views: 3443
- Tue Jan 09, 2007 3:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to supress leading zeros
- Replies: 10
- Views: 3443
- Tue Jan 09, 2007 3:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Key Change - Increment Value
- Replies: 13
- Views: 3031
store it in a stored procedure, I'm . The OP did not specify that the data is being extracted from a db table. I guess you assumed. Hope it's right. Or did I miss something? Whale. What a bummer. I meant stage variable. I was thinking of stored procedure while i was typing out my reply and hence my...
- Tue Jan 09, 2007 1:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Key Change - Increment Value
- Replies: 13
- Views: 3031
- Tue Jan 09, 2007 1:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to supress leading zeros
- Replies: 10
- Views: 3443
- Tue Jan 09, 2007 1:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check if a column is in valid date format
- Replies: 26
- Views: 10122
- Tue Jan 09, 2007 11:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check if a column is in valid date format
- Replies: 26
- Views: 10122
You cannot see this http://www.dsxchange.com/viewtopic.php? ... valid+date
- Tue Jan 09, 2007 11:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check if a column is in valid date format
- Replies: 26
- Views: 10122
- Tue Jan 09, 2007 11:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Convert XLS to CSV in UNIX
- Replies: 8
- Views: 5698
- Tue Jan 09, 2007 11:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check if a column is in valid date format
- Replies: 26
- Views: 10122
Check this link out.