bugdiver has asked for the wisdom of the Perl Monks concerning the following question:

Does DBI/DBD break when upgrading Oracle server or client?

Originally posted as a Categorized Question.

  • Comment on Does DBI/DBD break when upgrading Oracle server or client?

Replies are listed 'Best First'.
Re: Does DBI/DBD break when upgrading Oracle server or client?
by cavac (Prior) on Jul 15, 2012 at 21:25 UTC

    That is not so simple to answer.

    First of all, check Oracle's documentation on which client library can interact with which server version.

    You should also check the documentation of your installed DBD::Oracle module (run perldoc DBD::Oracle). If you upgrade the client libraries, you may have to upgrade DBD::Oracle as well; check DBD::Oracle, under the heading "WHICH VERSION OF DBD::ORACLE IS FOR ME?". If you install a new version via the cpan shell (or ppm), it should pull a newer DBI automatically if required.

    A note of warning: If you upgrade, relocate, or in any other way change the installed closed-source Oracle client libraries, you should always recompile/reinstall DBD::Oracle. Otherwise, your program might fail, crash, have memory leaks, etc.

Re: Does DBI/DBD break when upgrading Oracle from 8.1.6.3 to 8.1.7.3?
by metadatum (Scribe) on Jun 05, 2002 at 18:43 UTC
    I don't believe so, SQLNET remains the same. I've heard of issues upgrading to 9i, but not within 8i.

    Originally posted as a Categorized Answer.