Search found 42189 matches

by chulett
Fri Jun 10, 2005 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need answer
Replies: 7
Views: 1917

Sigh. Another newbie post that smells like interview questions. Arnd, I think you've got number two a little wrong. The question is perhaps poorly stated, I'm wondering if they specifically mean if both a routine and a transform have the same name - which one is executed 'first'? First is the wrong ...
by chulett
Fri Jun 10, 2005 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connection to Oracle in a DSEE environment
Replies: 6
Views: 2442

sathyanveshi wrote:Fine. In that case, what if my Oracle supports only 50 sessions? How will the parallel jobs execute?

Poorly. :wink:

As Ray notes, how many are you planning on running at the same time?
by chulett
Fri Jun 10, 2005 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it necessary to RESET the job after Run
Replies: 6
Views: 5174

RESET mode from the command line does the same thing that resetting the job from the Director does. It is only needed after a job has Aborted or has otherwise gotten itself into a state where the job cannot be run. Typically, any dsjob shell script would check the job and RESET it before running it,...
by chulett
Thu Jun 09, 2005 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle and DataStage
Replies: 5
Views: 2174

It's a procedure, so you'd need to call it directly in the Before (or After) SQL tab. Search the forum for examples of using Stored Procedures with the OCI stages.
by chulett
Thu Jun 09, 2005 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in
Replies: 10
Views: 2240

And did you restart the DataStage Server again? No, you shouldn't need root access to edit the dsenv file... which should be obvious by your ability (or inability) to save the modified file. :?
by chulett
Thu Jun 09, 2005 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

Select the OLETYPE as well as the count, so you can see what objects the counts are associated with. After that, if should be fairly obvious.
by chulett
Thu Jun 09, 2005 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connection to Oracle in a DSEE environment
Replies: 6
Views: 2442

I would certainly think so.
by chulett
Wed Jun 08, 2005 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

:? Don't think so Mr Kim, unless you bump into some kind of ulimit. Or it might get slower and slower to append data to the log...
by chulett
Wed Jun 08, 2005 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Muliple instance jobs
Replies: 4
Views: 1120

You just add the Invocation ID to the end of the job name, putting a dot/period between the two. So, instead of running jobname you would run jobname.invocationid instead.

Is that what you were looking for?
by chulett
Wed Jun 08, 2005 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

There's a menu option to do that... don't recall the exact command to get into it - DEADLOCK.MENU or some such? Stupid brain. :?

But in general, the answer is 'yes'.
by chulett
Wed Jun 08, 2005 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inconsistence Incoming data
Replies: 4
Views: 1183

You haven't said how you are receiving this data - in flat files? I'm a little bit at a loss as to why you feel a need to pad your fields to a constant length - why is this required? Perhaps more information about your source and target and why you feel the need to pad everything will help shed some...
by chulett
Wed Jun 08, 2005 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in
Replies: 10
Views: 2240

Ok, looks good. All you really need, environment variable wise, is to set ORACLE_HOME. And perhaps TNS_ADMIN if your tns files are off somewhere non-standard. The others - ORAHOME, ORACLE_SID and ORASID - aren't needed but don't hurt as far as I know. I'm assuming your SHLIB_PATH is being set somewh...
by chulett
Wed Jun 08, 2005 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in
Replies: 10
Views: 2240

Re: Unable to initialize plug-in

1. Is is required to install Oracle client in DS server in order to connect to Oralce DB. Yes. 2. Is there any other entry other than dsenv required. You haven't told us which entries you did add. What's required is spelled out in the Plugin Installation and Configuration Guide. Besides, what entri...
by chulett
Wed Jun 08, 2005 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to insert date in oracle
Replies: 11
Views: 4017

No, it's the DB2 stage that requires a date in internal format. The OCI stage is driven by the data type associated with the DATE field in the job. There is even a special section in the pdf documentation for the OCI stages on Date Handling. Typically, you declare the DATE field to be a Timestamp in...
by chulett
Wed Jun 08, 2005 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between ORAOCI and ORACLE bulkloader
Replies: 2
Views: 1686

Are you asking when you should use the Oracle Bulk Loader stage in DataStage and when you should use Oracle's sqlldr? Many people would tell you to never use the DS Bulk Loader to actually do the work. We only let it create the control file for us by setting it to 'manual mode' and putting an @FALSE...