Search found 15603 matches

by ArndW
Wed Jan 02, 2008 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Error-12
Replies: 3
Views: 1056

you set your ErrorCode to that value somewhere in your after-job routine.
by ArndW
Wed Jan 02, 2008 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Call DSExecute
Replies: 10
Views: 3449

What is the contents in the log if you

Code: Select all

CALL DSLogWarn(ScreenOutput,'')
?
Also, what is your ErrorCode value?
by ArndW
Wed Jan 02, 2008 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversions In Modify Stage
Replies: 2
Views: 1497

So, by posting this 3 times you think that you will get an answer 3x faster? Not from me.
by ArndW
Wed Jan 02, 2008 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSSetUserStatus, unable to use in parallel
Replies: 5
Views: 5179

You cannot call this from a PX transform stage, but you can create a DS/BASIC After-Job subroutine to set this value.
by ArndW
Wed Jan 02, 2008 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is getting aborted
Replies: 10
Views: 2202

I'm still assuming that you changed the output Oracle stage column attributes somewhere and added a 0 length or "" value on a CHAR column or something similar. Could you click on a column in the Oracle stage, right-mouse click and "edit row" and go through all the columns for a setting? This is most...
by ArndW
Wed Jan 02, 2008 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is getting aborted
Replies: 10
Views: 2202

Ahh, then perhaps you edited the column settings and specified a null length of 0 for one or more of the columns? Could you check that as well.
by ArndW
Wed Jan 02, 2008 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter Concatenation
Replies: 2
Views: 1027

Re: Parameter Concatenation

Does "#HdrFileName#:'.':#RejFileName#:'.':#SourceDate#" not work for you?
by ArndW
Wed Jan 02, 2008 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is getting aborted
Replies: 10
Views: 2202

What length did you specify for the INPUT and OUTPUT VarChar column lengths?
by ArndW
Wed Jan 02, 2008 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal
Replies: 7
Views: 2816

What datatype and length is your source String column defined as? Option (2) and (4) won't work as your output is a decimal column. Option (3) is my preferred one, although (1) might work. What is a "partially quoted" file? Can you write just your original string and Decimal converted columns to a P...
by ArndW
Wed Jan 02, 2008 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the leading Zeros
Replies: 6
Views: 1590

Prabhakar - but he stated in his original post that he had a VarChar() column. :wink:
by ArndW
Wed Jan 02, 2008 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the performance of datastage and SQL Loader
Replies: 12
Views: 5934

As Ray has already pointed out, since DS uses the loader you could ensure that the DS and handwritten loads are identical; meaning there wouldn't be a speed difference. The point is that DataStage will use a quick load by default, whereas the handwritten one needs to be manually tuned. I'd go for th...
by ArndW
Wed Jan 02, 2008 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Tracking on Different Projects
Replies: 5
Views: 3096

I think sharing a DataSet across projects is valid; it is pretty much the same (in my mind) as sharing a table or sequential file across projects. There is no builtin method of discovering which DataSets are used in which jobs; but if you have the actual DataSet name hardcoded in the jobs you can ex...
by ArndW
Wed Jan 02, 2008 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Initializing DOUBLE column to zero giving error
Replies: 8
Views: 1409

Normally you use the "fix_zero" keyword on conversions to allow this, or "allow zero" on the type default. I don't know which environment parameter might globally affect this, though.
by ArndW
Tue Jan 01, 2008 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid Multiple Instances of Jobs in Director Log.
Replies: 8
Views: 2927

Shawn - I remember now, I had to write a short DS/BASIC program that goes into the log and cleanses "orphaned" information. I think that might be fixed at V8 and can check that next week. I might also have the code on my PC which cleans up the log and can post it here.
by ArndW
Mon Dec 31, 2007 12:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files, filter command and \000 characters
Replies: 14
Views: 7643

IBM Support has unraveled the mystery. In DS 7.5.2, the following tr command is being called: /usr/bin/tr In DS 8.0.1, the following tr command is being called: /usr/ucb/tr It seems that the /usr/ucb directory is being prepended and the tr command in that directory acts differently from the default ...