Search found 42189 matches

by chulett
Thu Mar 15, 2007 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined Sql in Target Stage
Replies: 25
Views: 5484

But still i am unable to understand the relationship here between job failure and transformer. Because the Transformer is the active stage in the job. You'll see that if you search for the actual processes that are created when your job runs. So any job failure will be reported by these 'active' pr...
by chulett
Thu Mar 15, 2007 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot upgrade from 7.1.2r to 7.5.1
Replies: 1
Views: 551

You are going to need to be more specific about your issue, what you are seeing. Make sure you are pointing this installation to the location of your previous installation. Also note that I don't recall there being much (if any) verbiage related to 'upgrading', you basically install this version rig...
by chulett
Thu Mar 15, 2007 6:53 am
Forum: General
Topic: Error when using CLOB data type in Job
Replies: 8
Views: 3601

Any idea what the max data size is you'll be pulling from the CLOB for this job? Is your data source 10g by any chance?
by chulett
Thu Mar 15, 2007 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding SQL Query in DB2 Stage
Replies: 2
Views: 1109

The ODBC stage is very forgiving of binding issues. Others are very picky. For a lookup, you'll need as many ? bind parameters as you have Key fields defined.
by chulett
Wed Mar 14, 2007 7:40 pm
Forum: General
Topic: Sort Hash Files
Replies: 9
Views: 2634

<Thinks>
Cheater, cheater, pumpkin eater.
</Thinks>
by chulett
Wed Mar 14, 2007 6:43 pm
Forum: General
Topic: Sort Hash Files
Replies: 9
Views: 2634

And don't forget that you only get access to the Selection tab for hashed fields that were created in an account. Or ones you've explicitly created a VOC record for.
by chulett
Wed Mar 14, 2007 6:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable "APT_AUTO_TRANSPORT_BLOCK_SIZE" missing
Replies: 14
Views: 6897

I for one don't see the connection between the two options and the APT variable issue. I know, back in my younger and foolisher days, I've used both without knowing better and it didn't throw that error. Maybe it helps I don't have PX, only a Server license. Put both back, see if the error repeats. ...
by chulett
Wed Mar 14, 2007 6:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date help
Replies: 20
Views: 5747

Again, there is no such thing as "Oracle format". And there is an option in Toad to pull DATE fields out in a multitude of formats, MM/DD/YYYY is just one of them. It's doing the same thing DataStage is doing, an explicit mask and a TO_CHAR() in the select.
by chulett
Wed Mar 14, 2007 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading using FTP Stage - Need to improve performance
Replies: 8
Views: 2164

And as an added bonus, those file transfer utilities can typically do the EBCDIC to ASCII transfer on the fly so you don't have to.
by chulett
Wed Mar 14, 2007 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date help
Replies: 20
Views: 5747

[sigh] Oracle does not want any kind of 'internal' format. Oracle does not want dates in MM/DD/YYYY format. At a very high level, Oracle doesn't care, it just wants to be told what format to expect. DataStage on the other hand *is* expecting a certain format for Timestamp datatypes, which is after a...
by chulett
Wed Mar 14, 2007 2:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Exists in Directory
Replies: 18
Views: 4986

Add this as the first line of your routine:

Code: Select all

$INCLUDE DSINCLUDE JOBCONTROL.H
by chulett
Wed Mar 14, 2007 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Discrepancy in dsx files
Replies: 6
Views: 2026

Please post some specific examples so we can understand what you are seeing.
by chulett
Wed Mar 14, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage reading...
Replies: 13
Views: 3139

Ok, true. Point was to not rip apart the job and change the target (whatever it is) but to simply add the constraint.
by chulett
Wed Mar 14, 2007 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage reading...
Replies: 13
Views: 3139

No need to remove the target OCI stage. Just do as Ken suggested and change your constraint(s) to @FALSE - literally. That will shut down the target half of your job and you can see how quickly your current settings can pull data out of your database.
by chulett
Wed Mar 14, 2007 8:10 am
Forum: General
Topic: Calculating top vaues
Replies: 33
Views: 8467

A UV stage over the hashed file will allow SQL to be run against the hashed data. A couple of caveats - the hashed file will need to be in an 'account' or have a VOC record built for it. And it will more than likely be slow without specific indexes built to support the queries. Search for forum for ...