Search found 42189 matches

by chulett
Fri Dec 17, 2004 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last Change Date and User
Replies: 11
Views: 4126

Looking in the Director log won't help with finding out who last modified an ETL job. I believe that someone (Ray/Ken/Kim) posted some code to get information like that from the internal DataStage repository, does anyone remember seeing that? I did a quick search but couldn't turn anything up. That'...
by chulett
Fri Dec 17, 2004 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00918 Columns ambiogusly defined
Replies: 9
Views: 3134

No, and it doesn't look all that ambiguous, either. :?

If you take copy that same query into TOAD or SQL*Plus, do you still get the error?
by chulett
Thu Dec 16, 2004 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: Operator terminated abnorm
Replies: 4
Views: 2798

Here is a Wiki definition of that particular "Segment Violation" signal, which typically indicates a programming problem. :?
by chulett
Thu Dec 16, 2004 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer's list of jobs
Replies: 4
Views: 1425

That's the point I was trying to make. There's no reason, in a properly set up set of Sequencers and/or jobs, to have to go farm through everyone's log just to make sure everything ran ok. :?
by chulett
Thu Dec 16, 2004 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleaning out Director log entries
Replies: 16
Views: 5929

What you set at the Project level only gets applied to new jobs when they are created. It becomes their default setting and changes at the project level have no effect on existing jobs. That's why you need a routine like this to force changes across existing jobs... the alternative is doing them one...
by chulett
Thu Dec 16, 2004 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleaning out Director log entries
Replies: 16
Views: 5929

Yes... should be very version generic.
by chulett
Thu Dec 16, 2004 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleaning out Director log entries
Replies: 16
Views: 5929

Kenneth Bland has posted some code in this thread that will run through a Project and set your Auto Purge options for you. Then your logs will start clearing themselves on a regular basis.

I've used it, it works great and has come in very handy. :wink:
by chulett
Thu Dec 16, 2004 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of the jobs
Replies: 3
Views: 1164

And "StringSpaces" is what, a custom routine or transform? Can you post the code for that as well?

Which stage is the "XXX" stage that aborts?
by chulett
Thu Dec 16, 2004 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle date problem
Replies: 7
Views: 2236

How is the field defined in the Oracle table? How is it defined in the DataStage job? What stage are you using to access Oracle? If applicable, are you using Custom or Generated SQL to insert into Oracle? These can all affect the answer to your question.
by chulett
Thu Dec 16, 2004 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer's list of jobs
Replies: 4
Views: 1425

Sorry, not really an answer to your question... Are you having issues where a Sequencer job calls other Sequencer jobs, there are errors in the lowest level jobs and the upper level Sequencer job doesn't know it? There are techniques discussed here, involving the use of DSLogInfo or DSLogFatal (pick...
by chulett
Thu Dec 16, 2004 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture the message from Director Log?
Replies: 4
Views: 1263

Perhaps the "FAQ Man" should put together one on this topic. :wink: It sure seems to be a popular topic lately!
by chulett
Thu Dec 16, 2004 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with upgrade V5.2 to V7.5
Replies: 2
Views: 1766

I think you are not finding bugs in 7.5, per se, these are more like examples where they've gotten tougher on enforcing their own rules. Things you basically "got away with" in earlier versions are not being allowed any more. Now, whether that's a good thing or not can be a matter of opinion, but .....
by chulett
Thu Dec 16, 2004 2:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to get Hash File Name
Replies: 1
Views: 851

Case! Try changing 'CHASHEDOUTPUT' to 'CHashedOutput' and I think you'll be closer. :wink: Make sure the case of your hash file name matches exactly as well.
by chulett
Thu Dec 16, 2004 12:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle date problem
Replies: 7
Views: 2236

If the parameter type is 'Date', DataStage will put it into YYYY-MM-DD format - which would cause problems for your TO_DATE function as coded.
by chulett
Thu Dec 16, 2004 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleaning out Director log entries
Replies: 16
Views: 5929

Cameron was just trying to point out the fact that if you do use CLEAR.FILE to empty a log file, you'll lose the control infomation that is there as well - notably any auto-purge settings you had for the job.

Not everyone realizes that and it's good to know if you go down that path. :wink: