Search found 42189 matches

by chulett
Mon Apr 17, 2006 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Input stage
Replies: 8
Views: 2556

Thanks, I'll have to check them out. Interesting, but my understanding is that the XML Output stage is based on Xerces - perhaps the others as well.
by chulett
Mon Apr 17, 2006 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Of theJOB
Replies: 5
Views: 1976

Let's see... 9,000 source records... 2 seconds per query... 18,000 seconds... 300 minutes... 5 hours. Why would you think a 7-8 table join lookup, accessed directly from a database with the ODBC stage, fired once for every row coming thru the job would ever be performant? Why not build a hashed file...
by chulett
Mon Apr 17, 2006 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Input stage
Replies: 8
Views: 2556

Hey Andrew, care to pass along the name / site for that external XSLT parser you mentioned? :wink:
by chulett
Mon Apr 17, 2006 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open executable job file RT_CONFIG623
Replies: 12
Views: 4226

kcbland wrote:Methought there was a repair repository files under the DS.TOOLS repair indices processing? Was I drinking heavily at the time?

Possibly, but that's a story for another day. :wink:
by chulett
Mon Apr 17, 2006 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: i enter year through parameter need all days to be dispalyed
Replies: 4
Views: 996

Convert the first day of the parameter year to internal format and then increment by 1 until the year changes. :wink:
by chulett
Mon Apr 17, 2006 6:43 am
Forum: IBM QualityStage
Topic: Problem with QualityStage Reports Generator
Replies: 2
Views: 1593

Install Access. :wink:
by chulett
Sun Apr 16, 2006 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: format string
Replies: 6
Views: 1564

Agreed, but the FMT solution seems... better. At least from an educational standpoint. :wink:
by chulett
Sun Apr 16, 2006 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: format string
Replies: 6
Views: 1564

Try just fmt(right(In.Column,10),"15'0'R") as it looks like Arnd misunderstood the 'tacking on five zeroes' part.

Well, one of the two of us did. :wink:
by chulett
Sat Apr 15, 2006 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connecting/extracting from multiple schemas
Replies: 2
Views: 943

Two schemas in the same instance? Sure. Two instances would require dblinks.
by chulett
Sat Apr 15, 2006 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generation of surroagte key
Replies: 6
Views: 2032

Many answers. A search on 'sdksequences' will turn up much discussion on the subject. As to a code sample:

Code: Select all

UPDATE SDKSequences USING DICT VOC SET F1 = 'YourDesiredValue' WHERE @ID = 'YourSequenceName';

Obviously, you'll need to make a couple of substitutions. :wink:
by chulett
Fri Apr 14, 2006 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am getting error while calling UtilityRunJob from a routin
Replies: 7
Views: 3226

ray.wurlod wrote:From memory it's cataloged as "DSX.UTILITYRUNJOB"

Sounds right to me.
by chulett
Fri Apr 14, 2006 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while opening thejob, DS_JOBOBJECTS
Replies: 16
Views: 5723

I believe that Ray would like you to post the actual results (copy/paste) of each command rather than paraphrasing them.
by chulett
Fri Apr 14, 2006 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using STP stage with Sybase
Replies: 3
Views: 1106

I'm sure the documentation would discuss how to set this stage up for each db vendor. Have you connected to Sybase via DataStage before this? Do you have the Sybase OC installed on your DataStage server?
by chulett
Fri Apr 14, 2006 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Stored procedure
Replies: 2
Views: 931

You're better off upgrading and using the Stored Procedure stage. :wink:

You can't use an anonymous block there, so the syntax is either 'exec' or 'call'. You will find that not all procs take kindly to being called like that and the only recourse is the use of the SP stage in those cases.
by chulett
Thu Apr 13, 2006 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CHECKPOINT concept
Replies: 7
Views: 1616

By specifying Checkpointing in job sequence properties, if we restart the job. Then job will start by skipping upto the failed record.this option is available in 7.5 edition... Um... no. If you restart the sequence it will 'skip up to' the failed job and restart the sequence from failed job. i want...