Search found 42189 matches

by chulett
Thu Apr 26, 2007 6:27 am
Forum: General
Topic: dsjob -jobstatus does not wait on restart
Replies: 15
Views: 13128

btw, this odd behavior only occurs on RESTART. Steve - can you clarify exactly what you mean here? Do you specifically mean only with a Sequence job that is in an 'Aborted/Restartable' status? Or any job with that status? Something else? I'm also curious about the -local option you are using. I've ...
by chulett
Wed Apr 25, 2007 11:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting error in a job using Aggregator
Replies: 8
Views: 2096

You need to presort your data to support your grouping keys and assert the sorted order in the Aggregator stage.
by chulett
Wed Apr 25, 2007 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture remote server response during FTP
Replies: 2
Views: 957

Have you looked to see what's in your ScreenOutput variable?
by chulett
Wed Apr 25, 2007 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Aggretaor
Replies: 10
Views: 2188

What's your volume? As noted, I'lll wager you need to sort your data and then assert that in the stage.
by chulett
Wed Apr 25, 2007 6:56 am
Forum: General
Topic: how to call an unix script in sequence job
Replies: 10
Views: 3854

What result are you getting? :?

You don't need the 'sh' part on the front, simply put the fully pathed script in the Command box and then any parameters / arguments (if needed) in the Parameter box.

Run the job and then post whatever messages in the log relate to that stage.
by chulett
Wed Apr 25, 2007 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where did I go wrong?
Replies: 20
Views: 4999

Perhaps you could verify that, in fact, the indexes you believe are in place actually are. I don't recall the syntax you'd need off the top of my head, however. I say that because the only time I see rows/sec run at '<1' in this situation is when there are no indexes in place. And yes Ray, we all kn...
by chulett
Wed Apr 25, 2007 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined Sql in Target Stage
Replies: 4
Views: 1256

Answer seems pretty obvious. The DRS stage does not support numbered bind variables. You need to stick with the positional (yuck) question mark variety. Besides, I thought only Oracle used the numbered ones? As to your second question, carefully read the post you linked to. The question about 'dynam...
by chulett
Tue Apr 24, 2007 9:40 pm
Forum: General
Topic: How to add datetime stamp + duration hours
Replies: 3
Views: 1786

What have you tried so far?
by chulett
Tue Apr 24, 2007 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML output file
Replies: 9
Views: 2308

Thanks, good to know.
by chulett
Tue Apr 24, 2007 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML output file
Replies: 9
Views: 2308

We'll see if that changes anything, Ernie. I believe the error lies elsewhere. I'm curious though, does the Sequential file stage just make that specification file more obvious because it aborts the job while the XML Output issue could be more of the 'Silent But Deadly' variety? Or are you advocatin...
by chulett
Tue Apr 24, 2007 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to run DS EE parallel jobs on W2K Server
Replies: 1
Views: 507

It's all about your version of DataStage. You must have 7.5x2 or 8.x in order to run PX jobs on Windows. With others you can build / compile but as noted they cannot run there. No patch or O/S upgrade will change that.
by chulett
Tue Apr 24, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference in Lookup row count - ODBC and UniVerse Stage
Replies: 4
Views: 831

No, the technique is perfectly valid. You build the hashed file with X keys and lookup on < X in the UV stage. The reason for the difference will be the simple fact that you must not be doing the same thing in the Hashed File / UV solution that you were in the ODBC one. Without all of the gory detai...
by chulett
Tue Apr 24, 2007 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Oracle loading "ORA-01843: not a valid mon
Replies: 3
Views: 1390

Why are these two dates in a different format than the rest?

CONTRACT_EFF_DATE = 03/01/2007 CONTRACT_TERM_DATE = 12/31/9999

Consistent handling of dates is key to success.
by chulett
Tue Apr 24, 2007 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation
Replies: 3
Views: 872

Just keep in mind the fact that it isn't a "supported platform" for the client. Not saying it won't work just that it may be difficult to get help with it if you have problems.
by chulett
Tue Apr 24, 2007 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source and target as the same table (using oracle stage)
Replies: 22
Views: 6403

i have a table in the oracle database. i want to do a transformation on one column of that table and load back into the same table with the same job. that means i have to give the same table name in the oracle stage properties for the i/p and o/p. I want to know whether it works or not? I understan...