Tengo un script Perl, el cual necesita conectar a una base de datos Oracle utilizando el módulo DBI...
Al momento de instalar el driver específico para Oracle "DBD::Oracle" me genera el siguiente error::
- Código: Seleccionar todo
Trying to find an ORACLE_HOME
Your LD_LIBRARY_PATH env var is set to ''
The ORACLE_HOME environment variable is not set and I couldn't guess it.
It must be set to hold the path to an Oracle installation directory
on this machine (or a machine with a compatible architecture).
See the README.clients.txt file for more information.
ABORTED!
El tema es que el servidor de base de datos es una máquina remota y mi máquina solo tiene el interprete Perl 5.8.8 (Fedora core 5)
Instalé un cliente Oracle "Oracle Application Express" pero al momento de tratar de instalar DBD::Oracle me dice::
- Código: Seleccionar todo
The ORACLE_HOME environment variable value (/usr/lib/oracle/xe/app/oracle/product/10.2.0) is not valid.
It must be set to hold the path to an Oracle installation directory
on this machine (or a machine with a compatible architecture).
For an Instant Client install, the directory should include an sdk subdirectory.
See the README.clients.txt file for more information.
ABORTED!
¿Cómo puedo hacer conexión al servidor de BD Oracle remoto?
¿Qué debo instalar?