Search found 15603 matches

by ArndW
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

Are you doing a 'COUNT' in your SQL? What is your SQL in the ODBC stage?
by ArndW
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

Joins want sorted data, so it is best to put in your own explicit sort stages and, when not necessary, mark sort key columns as "don't sort, previously sorted". Partitioning and repartitioning must be done on the join keys.
by ArndW
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...
by ArndW
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

This is a very basic error message, it means that your file contents do not match up with your DataStage file definition. Specifically, with a fixed width file, your column widths don't match up. In addition, usually fixed width files don't have record delimiters.
by ArndW
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

I vaguely recall having seen this before as well, and it was a compiler-related issue. I think I changed the compiler optimization switches around to get rid of the error. If you google your platform, compiler and the error message you might be able to get more information.
by ArndW
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

Is it reproduceable if you do a multiple-job compile with just that sequence, does it also generate the error message? If so, you should submit it to your support provider.
by ArndW
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
by ArndW
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

kollurianu wrote:... [IIS-CONN-ORA-003005] A data conversion error was encountered in bulk load mode for row 3, column 10...
What is the data type and value of row 3, column 10?
by ArndW
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

Nope, the documentation states that the divisor and remainder are integers.
by ArndW
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

What about in the NLS tab of the Oracle enterprise stage, could you set that to use project default?
by ArndW
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

The BASIC transform stage is not visible in the palette. If you go to the Repository tree, select Stage Types -> Parallel -> Processing -> BASIC Transformer and drag that to the canvas.
by ArndW
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

If you are using upsert method, then no error would be generated, since the first record does an insert, the second an update.
by ArndW
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

When calling a job from a job sequence you choose what parameters to pass, so doing what you are asking is a simple task.
by ArndW
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

Would it be possible to post the generated OSH code to the thread?
by ArndW
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...