Search found 15603 matches
- Mon Mar 22, 2010 6:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: SQL server load jobs failing
- Replies: 2
- Views: 1386
- Fri Mar 19, 2010 6:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to increase the JOIN stage performance
- Replies: 2
- Views: 2887
- Fri Mar 19, 2010 5:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: replacing a part of unicode chinese string, with a string
- Replies: 4
- Views: 1418
I just realized that I cut-and-pasted an incorrect line 2. The first line is a stage variable that is an integer which gives the starting position of the substring. The second line should be: IF svKeyPosition THEN Xfm_DuplicateCAAPS_IN.Chinese_text[1,svKeyPosition-1]:Xfm_DuplicateCAAPS_IN.PORDNUMB:X...
- Fri Mar 19, 2010 5:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting warning message in sequential file stage
- Replies: 4
- Views: 2405
- Fri Mar 19, 2010 5:07 am
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: Not able to compile job error in transformer stage
- Replies: 5
- Views: 4173
- Fri Mar 19, 2010 4:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multiple job compile issue
- Replies: 2
- Views: 1366
- Fri Mar 19, 2010 3:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: replacing a part of unicode chinese string, with a string
- Replies: 4
- Views: 1418
The convert function works on a single character, not a string and won't work for you in this case. You might use this:
Code: Select all
svKeyPosition INDEX(Xfm_DuplicateCAAPS_IN.Chinese_text,'xxxxxxxxxx')
NewString[svKeyPosition,10]=Xfm_DuplicateCAAPS_IN.PORDNUMB
- Thu Mar 18, 2010 1:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while loading using an oracle connector stage
- Replies: 3
- Views: 10912
Re: Error while loading using an oracle connector stage
What is the data type and value of row 3, column 10?kollurianu wrote:... [IIS-CONN-ORA-003005] A data conversion error was encountered in bulk load mode for row 3, column 10...
- Thu Mar 18, 2010 10:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue with ABS and MOD Function in Parallel Extender Job
- Replies: 17
- Views: 12577
- Thu Mar 18, 2010 9:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue with loading "few" non english characters in
- Replies: 6
- Views: 9569
- Thu Mar 18, 2010 9:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: basic transformer
- Replies: 2
- Views: 898
- Thu Mar 18, 2010 4:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Enterprise Stage Reject Link is not working
- Replies: 7
- Views: 2458
- Thu Mar 18, 2010 3:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: parameter concatenation
- Replies: 2
- Views: 1261
- Thu Mar 18, 2010 3:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multiple errors using Server Shared Container
- Replies: 8
- Views: 6062
- Thu Mar 18, 2010 3:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: performance tuning
- Replies: 1
- Views: 903
There are so many possible sources for this error and so little information to work with that it is impossible to even guess as to the cause. Take one job as an example, then see if the read or write to or from the database is taking longer - do this by making a copy of the job and replacing the out...