Search found 42189 matches

by chulett
Thu Jun 24, 2004 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i odbc driver configuration HP-UX ****RESOLVED****
Replies: 13
Views: 4381

You would use those if you actually wanted to access Oracle via ODBC. My general Rule Of Thumb is to use a "native" access method (like OCI for Oracle) over a more "generic" method (like ODBC) if at all possible. The standard Oracle ODBC driver would still require SQL*Net in order to operate, wherea...
by chulett
Thu Jun 24, 2004 11:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can DataStage execute remotely on NT box?
Replies: 3
Views: 827

Seems to depend on your platform as to whether you can use Job Parameters in the CommandExecution stage or not. From what I've seen, it doesn't work on most. Try using #Parm1# instead of $Parm1 and see if that works. If it doesn't, you'll need to fall back on a Routine that wrappers your call to the...
by chulett
Thu Jun 24, 2004 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i odbc driver configuration HP-UX ****RESOLVED****
Replies: 13
Views: 4381

Still mixing your fruits. The ".odbc.ini" file has nothing to do with setting up OCI. SQL*Net is part of Oracle and you must have (at the very least) an Oracle Client (and thus SQL*Net) installed on the same server that DataStage lives on. I'm assuming you do and that is what $ORACLE_HOME is pointin...
by chulett
Thu Jun 24, 2004 10:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can DataStage execute remotely on NT box?
Replies: 3
Views: 827

It can be done, as far as I know. Do a search in this forum for remsh to see various discussions on this topic, that should get you started.
by chulett
Thu Jun 24, 2004 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i odbc driver configuration HP-UX ****RESOLVED****
Replies: 13
Views: 4381

You seem to mixing apples and oranges. What you are setting up via 'dsenv' is for use by OCI not ODBC. If you've correctly set the $ORACLE_HOME and $SHLIB_PATH environment variables in dsenv then restarted DataStage, you should be fine. Try to import metadata using the OCI9 plugin, or drop one in a ...
by chulett
Thu Jun 24, 2004 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Child Jobs in not detected from Parent Job Sequence
Replies: 15
Views: 5939

I personally don't see a reason why a Sequence would ever need to 'abort' itself. A 'warning' message should do the job just fine. My .02 on that. I also never (well, hardly ever) use a 'Failed' trigger. Unless I specifically need to differentiate between "Finished (with warnings)" and "Aborted" in ...
by chulett
Thu Jun 24, 2004 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcput - timeout waiting for mutex
Replies: 18
Views: 14288

Welcome! Sorry, only questions at this point, no answers yet. :wink:

So, when does this error happen? Only when writing to XML? :?

Nothing else magical in your job, IPC stages or Row Buffering turn on, anything like that? Also, for the record - operating system?
by chulett
Thu Jun 24, 2004 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Child Jobs in not detected from Parent Job Sequence
Replies: 15
Views: 5939

If I needed UtilityAbortToLog as well as \sdk\Utility\UtilityWarningToLog, should i add another output trigger (link) ? Yes, mostly. You can add another triggered link from a Job stage or simply chain them together, one after the other. It really depends on exactly what you are trying to accomplish...
by chulett
Wed Jun 23, 2004 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge multiple files into single data set
Replies: 7
Views: 2156

500+ posts and getting your sig wrong, too! :wink: :lol:
by chulett
Wed Jun 23, 2004 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chaining reference input links
Replies: 8
Views: 2397

See... frowned upon. :lol:
by chulett
Wed Jun 23, 2004 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chaining reference input links
Replies: 8
Views: 2397

Yes. It is frowned upon by some, but as long as you understand the link ordering requirements and don't mind a little red in your jobs, it does work. I personally don't do this, but I know people that do. It's a good thing to drop an annotation about in the job so people don't think something is 'br...
by chulett
Wed Jun 23, 2004 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Files - 64 bit
Replies: 6
Views: 1563

Roy - You are probably going to need to share some of the information you used in the HFC before anyone can do more than take stabs in the dark. What are the gory details of your hash? Number of keys? Number of fields? Average record length? What do your keys look like? What hash type(s) are you usi...
by chulett
Wed Jun 23, 2004 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Export Backup
Replies: 8
Views: 1582

His suggestion is based on the notion that your Repository indexing may have become incorrect Is it not a notion worth pursuing? As Ray mentioned, we all know where you are doing your export from - these are suggestions on places to go and things to try to help solve your problem. The biggest quest...
by chulett
Tue Jun 22, 2004 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Child Jobs in not detected from Parent Job Sequence
Replies: 15
Views: 5939

This is actually a pretty straight-forward problem to solve. We added a Routine stage to the error handle section of all of our 'Child' Sequences. When a job has problems, do your normal error handling (send an email, whatever) and then execute one of the "Utility???ToLog" routines - either "Warn" o...