Search found 42189 matches

by chulett
Mon Jun 14, 2004 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete rows in table Oracle
Replies: 9
Views: 2031

Or simply set the 'Update action' to 'Truncate then insert' if the clearing of the table can wait until just as the job starts.
by chulett
Mon Jun 14, 2004 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of Datastage 7.1
Replies: 21
Views: 7158

Andy, you might want to check out this thread on setting the debug option on 'dsrpcd', it may help you figure out what's going on when it doesn't start.
by chulett
Mon Jun 14, 2004 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procs
Replies: 5
Views: 2281

Too bad. :cry:

Did you look at the other thread? Any chance of trying the 'CALL' statement as custom SQL or in a 'before' tab? Seems like you could add a bogus select to the actual stage, select 'sysdate' or something out to the flat-file so that DataStage is happy. :?
by chulett
Mon Jun 14, 2004 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procs
Replies: 5
Views: 2281

Perhaps you can make use of a 'trick' people have been using with Oracle and stored procedures? It's detailed (amongst other places in the forum) here. You could always take the logic from the stored procedure and build a DataStage job to accomplish the same thing, I would think. That would put the ...
by chulett
Fri Jun 11, 2004 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Concatenation
Replies: 9
Views: 2408

It works just fine... as long as it is the only process writing to the file. :wink:

If you are building these two outputs simultaneously, then you must write them to two distinct filenames. After the job completes you can combine them however you please.
by chulett
Fri Jun 11, 2004 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Concatenation
Replies: 9
Views: 2408

denzilsyb wrote:In the sequential file stage, use the 'Append' option, instead of the overwrite option.

Only if two jobs or steps are involved! :shock:

Yes, a second file can be appended to the end of an existing file, but people that haven't faced this issue before shouldn't think they can do this all at once.
by chulett
Fri Jun 11, 2004 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Concatenation
Replies: 9
Views: 2408

How are you doing the 'concatenation'? Hopefully, not with two output links both trying to write to the same sequential file at the same time. That simply cannot be done. Write to two different sequential files and then (in the After Job arena) either concatenate one onto the end of the other or the...
by chulett
Wed Jun 09, 2004 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need suggestion on using Transformer stage?
Replies: 9
Views: 2705

I ALWAYS use a transformer between passive stages -- > BEST PRACTICE. I couldn't agree more. It is not only a Best Practice, but there are known issues in certain situations where passive stages - when directly linked together without a transformer - do not work correctly. Always use a Transformer,...
by chulett
Wed Jun 09, 2004 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date is an integer
Replies: 10
Views: 2998

Post your Oconv logic. I'd also suggest defining it as a Timestamp in the OCI stage and consistently handling them that way.
by chulett
Wed Jun 09, 2004 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject Links and Array sizing
Replies: 1
Views: 763

Re: Reject Links and Array sizing

Up to my knowledge I know that "we have to set Array size of a ORACLE stage to 1 in order to get the rejected records." -PLZ correct me if the above statement is wrong. Right and wrong. You'll still get rejected rows with an Array Size of something other than 1, the problem is it won't always log t...
by chulett
Wed Jun 09, 2004 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HELP
Replies: 14
Views: 4610

kcbland wrote:DS started as an individual product at 3.5, and evolved into a suite by 7.1.

Wasn't it actually 3.1? That was the first version I saw... unless it was still something other than an 'individual product' at that point. :?
by chulett
Wed Jun 09, 2004 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Billing software -> CRM
Replies: 3
Views: 1434

No idea, but I'd be shocked if it can't be done... unless one or the other is "proprietary". Any idea what database is under the covers of them?
by chulett
Wed Jun 09, 2004 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do i delete fields
Replies: 15
Views: 4933

Or he's actually (gasp! shock! horror! x2) actually working?

:lol:

Either that or he's entered the Witness Protection Program and posting under an alias. Like Kim said - it's ok, we won't tell Teej. Join Us.
by chulett
Wed Jun 09, 2004 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Locking of Table
Replies: 13
Views: 3428

Re: Locking of Table

I am updating/inserting in a table with a single server Job (There are two target stages for the same table) - one with an update on one condition and another with insert with another condition. Both constraints result in two different targets. But the table(not job) gets locked. Hence the job hang...
by chulett
Mon Jun 07, 2004 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Specifying a DSN
Replies: 9
Views: 3534

But are you saying the table definitions change from load to load? :? I'm curious why you would need to 'import table definitions' each time?