![]() |
|
XP is just a number | |
PerlMonks |
Re: connecting toOracle7 and Oracle9 simultaneouslyby elwarren (Priest) |
on Jun 03, 2005 at 18:48 UTC ( #463365=note: print w/replies, xml ) | Need Help?? |
I've done this, so I can answer :-)
The interface changed between Oracle v7 and v8. Version 8 compiles against oci8. The DBD::Oracle module compiles against the binaries, so you will need to have the Oracle client software installed on each machine you want to run your script from. The server is licensed, the client is not, so it can be installed where ever you want as long as you don't build a database there. You cannot compile the module for v8 and copy it to machine with v7. When you compile the module against your 9.2.x.x libraries you will be able to connect to the 7.x.x database. Connecting to two databases at the same time, even in same script should not be a problem, I've done this for a dataload in the past. Your standard oracle environment variables should be set:
I think that's about it, off the top of my head. Good luck!
In Section
Seekers of Perl Wisdom
|
|