Show us exactly what you did, and that may be an easier question to answer.
Did you build this incrementally, verifying that your conversion to string is successful? If so, what does the string look like? That having been done, does that correspond to the date picture you are currently using?
Search found 53125 matches
- Tue Sep 06, 2005 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: regarding Date conversion
- Replies: 17
- Views: 6101
- Tue Sep 06, 2005 6:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP Stage
- Replies: 5
- Views: 1886
- Tue Sep 06, 2005 6:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to install NLS seperately?
- Replies: 12
- Views: 4234
- Tue Sep 06, 2005 6:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: COUNT Problem
- Replies: 12
- Views: 2623
Code: Select all
FUNCTION CountHashedFile(HashedFileName)
Command = "COUNT " : HashedFileName
Call DSExecute("UV", Command, Output, SystemReturnCode)
Ans = SystemReturnCode
RETURN(Ans)Sheesh!
- Tue Sep 06, 2005 6:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Execute Update Statements
- Replies: 8
- Views: 2687
I have done this in India, where the area code can be from two to five digits. You have to document the rules. You need to know what are and are not valid area codes then, if the phone number begins with this, decompose it. For speed, I ended up using a bit-matching technique against position in an ...
- Tue Sep 06, 2005 6:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Null Handling
- Replies: 2
- Views: 1543
- Tue Sep 06, 2005 5:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding oracle enterprise stage
- Replies: 8
- Views: 3252
- Tue Sep 06, 2005 5:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: use of column import/transformer
- Replies: 3
- Views: 1073
- Mon Sep 05, 2005 8:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Joc trmplates
- Replies: 7
- Views: 2398
- Mon Sep 05, 2005 8:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: StringToDecimal
- Replies: 3
- Views: 1394
- Mon Sep 05, 2005 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Check for Alphabet
- Replies: 1
- Views: 596
Since you're searching for one character, the Index() function will be the most efficient.
Code: Select all
Index("JKLMNOPQR", Right(InLink.ColName,1), 1) > 0- Mon Sep 05, 2005 4:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Killing process left running from aborted job
- Replies: 13
- Views: 26184
Warning!! A job consists of more than one process. For server jobs there is one process (executing DSD.RUN) controlling the job and zero or more other processes (executing DSD.StageRun) which are child processes of the controlling process. Find and kill any child processes before killing the contro...
- Mon Sep 05, 2005 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Import job get error DSR_SELECT and CATALOG errors.
- Replies: 8
- Views: 2263
DSR_SELECT errors mean that there's something wrong with the Repository for that project. Given that DS.REINDEX doesn't help I'd guess that it's because of the space in the project name. The internal error (81021 "error writing to pipe") comes from the DataStage RPC mechanism; my guess is that it ca...
- Mon Sep 05, 2005 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: COUNT Problem
- Replies: 12
- Views: 2623
- Mon Sep 05, 2005 4:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to install NLS seperately?
- Replies: 12
- Views: 4234
It won't corrupt any jobs. The same can't be guaranteed for the job designs, however. In these you have specified NLS mapping, and now the NLS maps won't be loaded, so no mapping can take place. You will receive lots of warnings to this effect. Further, the results without mapping will need to be ch...