Search found 6797 matches

by DSguru2B
Fri Apr 27, 2007 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem Reading a Flat file
Replies: 11
Views: 6916

Try searching on the errror message. I remember a few posts on the same "specify width" error. Or read them as char and downstream change the type.
by DSguru2B
Fri Apr 27, 2007 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 2819

I was going to advise the modify stage as well. Give both these strategies a short.
EE is very particular as its skeleton is built over a strongly typed language(C, C++). Hence its always advised as a first step to take care of all data type conversions and stick to it till the very end.
by DSguru2B
Fri Apr 27, 2007 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reports to Database
Replies: 6
Views: 1269

Search here. There are lots of posts be Kim explaining the same, and in depth.
by DSguru2B
Fri Apr 27, 2007 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in loading a date
Replies: 10
Views: 48975

I have not worked on windows so I will let someone else give the insight on that. Unlike DB2, oracle does not like internal formats for dates. It has to be in YYYY-MM-DD format. I dont know how this would have worked in windows keeping in mind that the DSEngine is the same for both the platforms.
by DSguru2B
Fri Apr 27, 2007 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 2819

Make sure its nullable from the first stage.
by DSguru2B
Fri Apr 27, 2007 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running forever....
Replies: 10
Views: 3103

How often does this happen? Are you purging your log files regularly. Also keep the &PH& folder size in check?
by DSguru2B
Fri Apr 27, 2007 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 2819

I bet not. I think you need to set that as nullable.
by DSguru2B
Fri Apr 27, 2007 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 2819

Welcome Aboard :)
Simply do a null check using IsNull(). If its coming from a flat file you might also want to check for zero length after trimming the column value and then explicity set it to null using SetNull().
by DSguru2B
Fri Apr 27, 2007 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 8346

your funny sud djoni, no one here is going to demonstrate to that elaborate extent due to time constraints. I suggest you go through formal training or work under an experienced developer to mentor your where in depth training and demostration is possible. Your query is not that hard, at all. Pass t...
by DSguru2B
Fri Apr 27, 2007 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: desing of datastage job issue
Replies: 3
Views: 1372

Confusing. Please explain in words. Your also maipulating the dates. What needs to be added to what date and on what criteria.
by DSguru2B
Fri Apr 27, 2007 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do you write comments in the derivation of a transformer
Replies: 2
Views: 1609

Put an annotation outside the transformer on the canvas. You cannot put comments inside a transformer stage, as far as I know.
by DSguru2B
Fri Apr 27, 2007 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in loading a date
Replies: 10
Views: 48975

Date() inside the transformer or OS level date function? What expression are you using with Date()? Date() creates internal format. Now its upto you to change that to the format you require using the OCONV() function.
by DSguru2B
Fri Apr 27, 2007 7:14 am
Forum: General
Topic: Using of Trim function in parallel jobs
Replies: 1
Views: 895

Use Convert()

Code: Select all

Convert("|","", columnname)
by DSguru2B
Fri Apr 27, 2007 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Warning
Replies: 4
Views: 1310

If you specify it as not null in datastage but its a nullable column in the database, it wont help. Explicitly use the IsNull() function to check for nullability and either reject the record or specify a default value.
by DSguru2B
Fri Apr 27, 2007 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts in half the way
Replies: 5
Views: 1635

Its an ODBC error. Can you please give us some insight on the job design the sequence job design. What other error messages are there, if any and what happens when you run this job outside the sequence job. Do you still get the same error message?