Search found 42189 matches

by chulett
Mon Feb 06, 2006 11:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Process limit in DS
Replies: 2
Views: 1230

Better be some darn beefy hardware if you expect to be able to run 500 jobs in parallel on it. :?
by chulett
Mon Feb 06, 2006 11:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

10? That's not going to help. Basic formula is to take the size of the loaded DATA.30 and OVER.30 in bytes, add them together and then divide by 2048, assuming a page size of 1. That would give you a better minimum modulus to use.
by chulett
Mon Feb 06, 2006 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Do u think this XML file structure is ok...???
Replies: 8
Views: 1711

You probably should have let people know that it is related to this problem that you are having.
by chulett
Mon Feb 06, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -report error on AIX
Replies: 5
Views: 2267

I think one problem is the fact you are generating XML in your Filter command and then expect it to be read nicely by a Sequential File stage. This can be a little... problematic. Looks like an Error 11 on AIX is "Write error on direct file" which isn't a whole lot of help. Out of curiousity, you've...
by chulett
Sun Feb 05, 2006 11:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Update query
Replies: 5
Views: 1671

You do, as the same column name needs to be mentioned twice in the query.
by chulett
Sun Feb 05, 2006 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled error
Replies: 18
Views: 5670

Good. :wink:

For anyone that stumbles across this thread later, can you explain what you ended up doing to correct your problem? That way someone with the same problem will know what worked to fix it.

As Ray would say: "It's a sharing place".
by chulett
Sat Feb 04, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled error
Replies: 18
Views: 5670

vijayindukuri wrote:... and what do i need to specify if i want the return value

:? If you are still not sure what to do, either reread my post or check the online help - the answer is there.
by chulett
Sat Feb 04, 2006 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled error
Replies: 18
Views: 5670

We know. How many triggers do you have defined on the Routine Activity stage? You can't use a single trigger for this. Read the Help, it explains what you need - either a specific failure trigger or a combination of 'Ok' and 'Otherwise' triggers - if not, then *it* will handle anything it perceives ...
by chulett
Sat Feb 04, 2006 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled error
Replies: 18
Views: 5670

Pretty sure you need an explicit 'failure' trigger to stop those messages, like an 'Otherwise' one.
by chulett
Sat Feb 04, 2006 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled error
Replies: 18
Views: 5670

It's not a failure in the code, it's simply the fact that the routine returns a non-zero value and you've asked the Sequence to handle these automatically for you.
by chulett
Sat Feb 04, 2006 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Update query
Replies: 5
Views: 1671

Can you not use Custom / User Defined SQL to accomplish this? :?
by chulett
Fri Feb 03, 2006 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why do we need DRS though we have OraOci, DB2UDB, BCP, ODBC
Replies: 3
Views: 1644

You never "have" to use the DRS stage. From what I understand, it was created as part of the PeopleSoft deal. The goal was to allow your jobs to be "database independant" - a simple switch of a parameter and they go from talking to Oracle to any other supported database, for example. Of course, it i...
by chulett
Fri Feb 03, 2006 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: last record
Replies: 8
Views: 1979

Rob, I think you are thinking of the ROWNUM psuedo column in Oracle, where it gets tricky to limit output based on that under some circumstances. What Arnd is saying (I do believe) is that, with specific sort criteria - an order by - then you will have a known 'last record' in the output dataset. An...
by chulett
Fri Feb 03, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: moving text data type from one table to another.
Replies: 4
Views: 1619

I doubt there are any problem characters in these fields, it's more about the fact that these kinds of large TEXT fields (or LONGs or CLOBs) aren't really appropriate for processing by an ETL tool. However, that's not to say it can't be done, I've done it for CLOBs in Oracle, for instance. First thi...
by chulett
Fri Feb 03, 2006 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to combine 3 files (Header,Detail and Trailer)
Replies: 4
Views: 2376

Simply concatenate them together 'after job' with the appropriate operating system command - in the correct order, of course. :wink:

UNIX would be 'cat', Windows - copy? type? something like that.