Search found 42189 matches

by chulett
Tue Dec 19, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Probelm triggering job via Sequence
Replies: 15
Views: 3608

A 5 minute delay in updating status or the log? :shock:

How about my 'thought' that seems to have been completely ignored? Did you check for a 'before job' activity in JobA? Get that card off the table if it isn't a factor.
by chulett
Tue Dec 19, 2006 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seq Status vs Activity Status
Replies: 6
Views: 1204

asitagrawal wrote:What is combinational effect of check / Uncheck of the four options on the genral page, viz:
<snip>

How about you build a little test Sequence and see for yourself? Best way to learn is to do...
by chulett
Tue Dec 19, 2006 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seq Status vs Activity Status
Replies: 6
Views: 1204

To actually answer the question that was asked, that was because the Sequence ran to completion without problem. The fact that the jobs the Sequence job ran had problems doesn't really bother it - unless you specifically tell it to be bothered. One way to do so is the option that DSGuru2B mentioned,...
by chulett
Mon Dec 18, 2006 11:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: last date of previous month
Replies: 3
Views: 701

I'm not going to code it all up for you, but here are the steps you'd need to derive that: * Get current date in any format * Replace Day # portion with '1' * Convert to Internal format using IConv * Subtract 1 from Internal value * Convert back to External format of choice using OConv That should b...
by chulett
Mon Dec 18, 2006 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 3727

OMG it works. Actually if I set the update array size to 100 it works also. So it seems that they array sizes have to be the same for it to work? You sound surprised. No, they don't need to be the same per se. However, with your previous settings the sending of the Inserts to the database were bein...
by chulett
Mon Dec 18, 2006 9:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: importing ODBC
Replies: 7
Views: 978

Because it is one of Ray's patented Premium Posts.
by chulett
Mon Dec 18, 2006 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 3727

Ok... then let me know what happens when you change your Insert Array Size to 1.
by chulett
Mon Dec 18, 2006 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 3727

That's ok - I guess that would be the short version of what I said. Shane can pick his poison. :lol:
by chulett
Mon Dec 18, 2006 8:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 3727

Keep in mind the fact that Oracle will happily update nothing. In other words, an update will only generate a reject event if the update itself creates one - trying to set a required field to null, creating a unique constraint violation, RI issues, etc. The mere fact that it updated zero records in ...
by chulett
Mon Dec 18, 2006 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding rowsplitter
Replies: 3
Views: 730

No. Have you read the Help on what it actually does? It 'splits' an Input string (one big field) into Output columns (many smaller fields) and only supports one link in and one link out.

All you need are two links from a transformer to your '2 odbcs'.
by chulett
Mon Dec 18, 2006 7:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding date transformtions
Replies: 19
Views: 4750

Sheesh... how did we get this deep into your issue without ever knowing what database you are writting to? Answer some questions for the record: 1) What is your target database? 2) What stage are you using? 3) Is the stage generating the sql or are you? 4) If the stage is, what is your update action...
by chulett
Mon Dec 18, 2006 1:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage daylight time saving
Replies: 6
Views: 3582

That would be controlled by your Operating System, not DataStage.
by chulett
Mon Dec 18, 2006 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding peculiar error
Replies: 4
Views: 862

If you truncate the target table and load the data this error should not occur I'd be careful about giving advise like this without qualifying it, especially for a newbie. We don't want people going around truncating tables just to solve unique constraint errors... unless, of course, that's appropr...
by chulett
Mon Dec 18, 2006 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warnings--Fixed width File
Replies: 6
Views: 1465

It's not about the Column size as defined in the job, per se, it's about the size of the actual data as compared to the target field's size in the database.
by chulett
Mon Dec 18, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00904
Replies: 3
Views: 1420

In other words, one or more of your column names are invalid. Make sure you've got the table name correct first, that's a sure fire way to generate this error. :wink:

Then start checking everything else.