Search found 251 matches

by rleishman
Mon Feb 20, 2006 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load (Automatic Mode) Error
Replies: 31
Views: 12604

There are 3 performance considerations I can think of for SQL Loader Vs. OCI Load. 1. SQL*Loader is naturally a little faster than OCI load, but the reasons for this are unclear as they use much the same load mechanism. On a remote database, OCI must traverse the network for each buffer of rows, but...
by rleishman
Sun Feb 19, 2006 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sqlldr Password visible at Unix level
Replies: 9
Views: 7231

Damn Linux has ruined it for everyone! Just tried the above solution on Linux (SuSE SLES 8) and ps returns heaps more than 255 chars. I tried up to 1000 and I couldn't break it.

Use Ray's solution. Or you could also use the PARFILE option to stick the userid/password in a file.
by rleishman
Sat Feb 18, 2006 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sqlldr Password visible at Unix level
Replies: 9
Views: 7231

Most Oracle DBAs know about this one. There is a solution that works with all flavours of Unix I know, and exploits the fact that PS shows only the first 255 chars of the command. Some versions of Oracle actually ship with it included I think (at least they do with sqlplus and sqlforms) - but my cur...
by rleishman
Fri Feb 17, 2006 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load (Automatic Mode) Error
Replies: 31
Views: 12604

Persist with OCI Load. It works - I use it for all my high volume loads. OK, so you own the table. Clearly the userid, password and database name are correct because you are getting into the database in order to get the 942 error. What's left? I can think of 3 things: 1 - You have mis-spelled the ta...
by rleishman
Mon Feb 13, 2006 1:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restarting a job with the same parameters
Replies: 15
Views: 5740

Thanks guys. Kim, I found the EtlGetRowCountsFromLog job in EtlStats. I can see how I would go about grabbing params from there. Ray, I looked at RT_STATUSnnnn and didn't think it would help that much, but then I opened the file for a restartable job, and lo-and-behold we have a CHECKPOINT row. Look...
by rleishman
Sun Feb 12, 2006 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restarting a job with the same parameters
Replies: 15
Views: 5740

Restarting a job with the same parameters

We're using the standard checkpoint functionality to make our job sequences restartable. The only problem is that when you restart the top-level sequence, it asks for the parameters to be re-entered. I want an easy foolproof way to restart any restartable job seq using the same parameters as when it...
by rleishman
Wed Feb 01, 2006 6:44 pm
Forum: Site/Forum
Topic: Charter Membership - In my humble opinion
Replies: 1
Views: 2187

And in fact you are no worst then you've been so far, as already said, if the 5 Premium posters moved on and stopped posting. Not quite. If the Top5 moved on, there would be (way!) more posts with 0 responses. This is one of the first things that non-gurus look for - a question Ray hasn't gotton to...
by rleishman
Wed Feb 01, 2006 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file cleared for zero record
Replies: 2
Views: 1319

I know how I'd go about it, just not 100% on the syntax. Try this: 1. Create a routine ClearFileRoutine with 2 lines: EXECUTE "CLEAR.FILE " : Arg1 Ans = 1 2. Create a Stage Variable ClearFile in your first transformer with the derivation: If IsNull(ClearFile) Then ClearFileRoutine("Fi...
by rleishman
Wed Feb 01, 2006 1:12 am
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 20043

Guru advice costs, fair enough. I've received at least $50 assistance from the top5 in past. Non-guru advice is free. Also fair enough. Sometimes its good, sometimes not so good. Often its too late. But here's the problem: I occasionally connect to kill some time and answer some non-guru questions. ...
by rleishman
Sun Jan 22, 2006 7:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage install another problem
Replies: 3
Views: 2210

Apologies for reopening an old thread, but this might be useful for future searches. This happended to me as well (Linux - 7.5.1A). Trying to run inastall.sh for the purpose of loading some plugins, I got the same error. Turns out that the file system on which DSEngine resides (/opt in my case) was ...
by rleishman
Mon Jan 16, 2006 12:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Bulk Loader data & control file
Replies: 3
Views: 1796

If you are using the stage called "Oracle OCI Load", it doesn't use SQL*Loader in Automatic Mode, so there is no Control file. OCI (Oracle Call Interface) provides a programatic direct-path interface that allows DS to link the load code directly into the plugin. I have another stage called...
by rleishman
Mon Jan 16, 2006 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: range lookup on hashed file
Replies: 5
Views: 1581

I have seen several posts in this forum advising that you can use the UV stage rather than the Hashed File Stage. Since a Hashed File is really just a UniVerse table in disguise, you can use the UV stage to lookup the file using SQL. Note that you may need to index the table/file in order to get acc...
by rleishman
Thu Jan 12, 2006 9:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Default warnings limit in the Designer
Replies: 10
Views: 3357

Bad news on the 7.5.1A front Craig. Changed the default to 150 in Director(Tools/Options), bounced server, launched a job: Not only did it stay Unlimited, the default number (should you choose to accept it) was still 50. The mystery continues. My money is on "hard-coded", with a slim chanc...
by rleishman
Thu Jan 12, 2006 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a Unix script from another server ??
Replies: 4
Views: 1654

...how do you run a unix script from Oracle Taking you literally, to run a Unix script from Oracle, see http://www.orafaq.com/forum/mv/msg/55174/147495/78693/#msg_147495 In short, it's easy on Oracle 10g using DBMS_SCHEDULER package, trickier otherwise because you have to write you own launcher in ...
by rleishman
Thu Jan 12, 2006 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pivot Stage Performance
Replies: 3
Views: 1571

Excellent! That first solution is brilliant. All I need to do is swap my files for IPCs - child's play. It's running at a writeback rate of 600-700 rows/s, which is pretty creditable given the number of IPC's and the miserable config of my dev box. It should do better on a box with more procs. Am I ...