Search found 42189 matches

by chulett
Mon Apr 20, 2009 11:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle stage throwing library failure: open failed
Replies: 8
Views: 3463

ODBC may or may not be relevant - if you are using the wired (thin) drivers, for example, it working means nothing. However, if you are using the thick (client-based) drivers for ODBC, that's another story.
by chulett
Mon Apr 20, 2009 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restarting an aborted job sequence
Replies: 4
Views: 2030

:? I don't see how the two are related. There's a completely different message logged when a Sequence job is restarted with different parameter values, all it does is note the difference and move on. And it's not a fatal message or even a warning, it's a simple informational one. Searching the forum...
by chulett
Mon Apr 20, 2009 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle stage throwing library failure: open failed
Replies: 8
Views: 3463

So, what have you done to prepare the way? Installed Oracle client? Edited your dsenv file? That should do it. Post the relevant section of your dsenv file if you're unsure you've done it right.
by chulett
Mon Apr 20, 2009 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Index while loading oracle table
Replies: 7
Views: 3092

Note that it doesn't really "fix" anything, you've taken another path to your goal. As Shane noted, you "fix" the issue by leveraging the Index Mode option in the stage. For example you can emulate the typical process one would do outside of DataStage - drop the indexes, bulk loa...
by chulett
Mon Apr 20, 2009 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record with Null getting dropped for Nullable col in PX 7.5.
Replies: 11
Views: 5952

Stage variables do not support nulls.
by chulett
Mon Apr 20, 2009 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Index while loading oracle table
Replies: 7
Views: 3092

Yes, basically correct, it switches it back to a 'conventional' load using normal inserts and thus loses you any speed benefits you would get from a bulk load. It does, however, mean you don't have to futz with the indexes on the table. No clue how you set things up, just wanted to make sure you und...
by chulett
Mon Apr 20, 2009 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle stage throwing library failure: open failed
Replies: 8
Views: 3463

Has the OCI stage ever worked? Meaning, did it work before and is broken now, or is this the first time you are attempting to use it?
by chulett
Mon Apr 20, 2009 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Index while loading oracle table
Replies: 7
Views: 3092

Do you understand what "DIRECT=FALSE" means, does?
by chulett
Mon Apr 20, 2009 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle table creation by DS: column order?
Replies: 15
Views: 4095

PI, HAL, MoFo and 411 all in the same post, not to mention 'eye-balled', 'smoking gun', 'hot ampin' and 'circle the wagons'. This amused me. :lol:

(HAL 9000, btw, unless you meant a much earlier model)
by chulett
Mon Apr 20, 2009 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters in Command Stage
Replies: 22
Views: 6918

Ah... you mentioned 'Parallel' which I assumed meant something other than a Sequence job.
by chulett
Mon Apr 20, 2009 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: couldn't set locale correctly
Replies: 5
Views: 1412

Have you contacted your official support provider for help with this? Seems like the next logical step to me.
by chulett
Mon Apr 20, 2009 9:12 am
Forum: General
Topic: Latest version of Datastage
Replies: 1
Views: 1348

8.1
by chulett
Mon Apr 20, 2009 9:11 am
Forum: General
Topic: How to use DSSendMail Sub Routine
Replies: 3
Views: 2316

OK, 'after stage' rather than directly in the transformer. Still, and again, why do it there as the only job 'status' you'll have at that point is Running. :?
by chulett
Mon Apr 20, 2009 9:06 am
Forum: General
Topic: How to find the number of users logged into Data Stage?
Replies: 5
Views: 3040

Or the more traditional and perhaps easier to grok:

Code: Select all

ps -ef |grep dsapi |grep -v grep
:wink:
by chulett
Mon Apr 20, 2009 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DSSetJobLimit
Replies: 1
Views: 979

Too late in the 'Job Control' section as the job is already running at that point and any limit already set. Since you are running the job from the 'command line' I assume that means using dsjob yes? If so, simply adding -warn 1 to the command line will do the trick.